Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adatzer committed Jan 15, 2021
1 parent 5dbfb71 commit 7cedbb9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
@@ -1,3 +1,10 @@
Version 0.9.3 (2021-01-15)
--------------------------
Update Copyright to 2015-2021 (closes #177)
Snowflake: convert query output to string before printing (closes #166)
Commented lines execute as empty SQL statements in Snowflake (closes #119)
Add Snowflake reference to application description in help message (closes #132)

Version 0.9.2 (2020-12-15)
--------------------------
BigQuery: Run multiple-step queries as single script (closes #169)
Expand Down
10 changes: 5 additions & 5 deletions README.md
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.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)
* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.3_darwin_amd64.zip)
* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.3_linux_amd64.zip)
* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.3_windows_amd64.zip)

### CLI Output

```bash
sql-runner version: 0.9.2
sql-runner version: 0.9.3
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.2-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.9.3-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 Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.9.2
0.9.3
2 changes: 1 addition & 1 deletion sql_runner/main.go
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, Postgres, BigQuery and Snowflake`
CLI_VERSION = "0.9.2"
CLI_VERSION = "0.9.3"

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

0 comments on commit 7cedbb9

Please sign in to comment.