Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adatzer committed Jun 22, 2022
1 parent c4fafef commit 5f58211
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
@@ -1,3 +1,16 @@
Version 0.10.0 (2022-06-23)
---------------------------
Exit on flags parsing error (#208)
Fail fast on invalid playbook (#207)
Upgrade yaml library (#206)
Fix go get deprecation warning (#205)
Add ability to set QUERY_TAG session parameter in Snowflake (#201)
Update Snowflake Driver (#196)
Fix linter issues (#204)
Update dependencies (#195)
Upgrade go-pg/pg to v10 (#203)
Prevent exiting from goroutine (#202)

Version 0.9.8 (2022-04-22)
--------------------------
Add Application to JDBC driver configuration for identifying Snowplow jobs (#198)
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.8/sql_runner_0.9.8_darwin_amd64.zip)
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.8/sql_runner_0.9.8_linux_amd64.zip)
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.8/sql_runner_0.9.8_windows_amd64.zip)
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.10.0/sql_runner_0.10.0_darwin_amd64.zip)
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.10.0/sql_runner_0.10.0_linux_amd64.zip)
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.10.0/sql_runner_0.10.0_windows_amd64.zip)

### CLI Output

```bash
sql-runner version: 0.9.8
sql-runner version: 0.10.0
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.8
0.10.0
2 changes: 1 addition & 1 deletion sql_runner/main.go
Expand Up @@ -26,7 +26,7 @@ import (
const (
cliName = "sql-runner"
cliDescription = `Run playbooks of SQL scripts in series and parallel on Redshift, Postgres, BigQuery and Snowflake`
cliVersion = "0.9.8"
cliVersion = "0.10.0"

sqlrootBinary = "BINARY"
sqlrootPlaybook = "PLAYBOOK"
Expand Down

0 comments on commit 5f58211

Please sign in to comment.