Skip to content

Commit

Permalink
Tmp - Bump to rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
adatzer committed Jun 24, 2022
1 parent 4046ddf commit f3a767f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Version 0.10.0 (2022-06-24)
---------------------------
Version 0.10.0-rc2 (2022-06-24)
-------------------------------
Fix out of range panic on invalid runQuery argument (#210)
Exit on flags parsing error (#208)
Fail fast on invalid playbook (#207)
Expand Down
8 changes: 4 additions & 4 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 the GitHub release:

* [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)
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.10.0-rc2/sql_runner_0.10.0_rc2_darwin_amd64.zip)
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.10.0-rc2/sql_runner_0.10.0_rc2_linux_amd64.zip)
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.10.0-rc2/sql_runner_0.10.0_rc2_windows_amd64.zip)

### CLI Output

```bash
sql-runner version: 0.10.0
sql-runner version: 0.10.0-rc2
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0
0.10.0-rc2
2 changes: 1 addition & 1 deletion sql_runner/main.go
Original file line number Diff line number Diff line change
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.10.0"
cliVersion = "0.10.0-rc2"

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

0 comments on commit f3a767f

Please sign in to comment.