diff --git a/CHANGELOG b/CHANGELOG index abc0627..579d265 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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) diff --git a/README.md b/README.md index 998cbf6..ce89564 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/VERSION b/VERSION index 2774f85..2e0c328 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.0 \ No newline at end of file +0.10.0-rc2 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index 9e13804..3ada4f8 100644 --- a/sql_runner/main.go +++ b/sql_runner/main.go @@ -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"