Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed Jan 25, 2022
1 parent af05ca4 commit f7f99d1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
Version 0.9.7 (2022-01-18)
--------------------------
Handle Snowflake error `-00001:` (#191)

Version 0.9.6 (2022-01-18)
--------------------------
Bump dependencies (#187)
Expand Down
8 changes: 4 additions & 4 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 the GitHub release:

* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.9.6/sql_runner_0.9.6_darwin_amd64.zip)
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.6/sql_runner_0.9.6_linux_amd64.zip)
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.6/sql_runner_0.9.6_windows_amd64.zip)
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.9.7/sql_runner_0.9.7_darwin_amd64.zip)
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.7/sql_runner_0.9.7_linux_amd64.zip)
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.7/sql_runner_0.9.7_windows_amd64.zip)

### CLI Output

```bash
sql-runner version: 0.9.6
sql-runner version: 0.9.7
Run playbooks of SQL scripts in series and parallel on Redshift and Postgres
Usage:
-checkLock string
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.9.6
0.9.7
2 changes: 1 addition & 1 deletion sql_runner/main.go
Expand Up @@ -26,7 +26,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.6"
CLI_VERSION = "0.9.7"

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

0 comments on commit f7f99d1

Please sign in to comment.