Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed Dec 14, 2020
1 parent d16a28b commit e80a2c9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.9.2 (2020-12-15)
--------------------------
BigQuery: Run multiple-step queries as single script (closes #169)
BigQuery: Explicitly set Client.Location from the region playbook variable (closes #173)
Bump Travis Golang version to 1.15 (closes #174)

Version 0.9.1 (2020-11-17)
--------------------------
Add ability to template YAML playbook with custom functions (#167)
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ guest> make format

First either compile the binary from source using the above `make` command or download the published Binary directly from Bintray:

* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.1_darwin_amd64.zip)
* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.1_linux_amd64.zip)
* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.1_windows_amd64.zip)
* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.2_darwin_amd64.zip)
* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.2_linux_amd64.zip)
* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.2_windows_amd64.zip)

### CLI Output

```bash
sql-runner version: 0.9.0
sql-runner version: 0.9.2
Run playbooks of SQL scripts in series and parallel on Redshift and Postgres
Usage:
-checkLock string
Expand Down Expand Up @@ -117,7 +117,7 @@ limitations under the License.
[travis]: https://travis-ci.org/snowplow/sql-runner
[travis-image]: https://travis-ci.org/snowplow/sql-runner.png?branch=master
[release-image]: http://img.shields.io/badge/release-0.9.1-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.9.2-6ad7e5.svg?style=flat
[releases]: https://github.com/snowplow/sql-runner/releases
[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Expand All @@ -135,6 +135,6 @@ limitations under the License.
[developers-guide]: https://github.com/snowplow/sql-runner/wiki/Guide-for-developers
[devops-guide]: https://github.com/snowplow/sql-runner/wiki/Guide-for-devops
[devops-image]: http://sauna-github-static.s3-website-us-east-1.amazonaws.com/devops.svg
[analysts-image]: http://sauna-github-static.s3-website-us-east-1.amazonaws.com/analyst.svg
[developers-image]: http://sauna-github-static.s3-website-us-east-1.amazonaws.com/developer.svg
[devops-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png
[analysts-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png
[developers-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.1
0.9.2
2 changes: 1 addition & 1 deletion sql_runner/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
const (
CLI_NAME = "sql-runner"
CLI_DESCRIPTION = `Run playbooks of SQL scripts in series and parallel on Redshift and Postgres`
CLI_VERSION = "0.9.1"
CLI_VERSION = "0.9.2"

SQLROOT_BINARY = "BINARY"
SQLROOT_PLAYBOOK = "PLAYBOOK"
Expand Down

0 comments on commit e80a2c9

Please sign in to comment.