From 1aaba179c47fe451caa0fcd3e0545f2432fa22c6 Mon Sep 17 00:00:00 2001 From: adatzer Date: Thu, 16 Jun 2022 18:07:30 +0300 Subject: [PATCH] Prepared for release --- CHANGELOG | 14 ++++++++++++++ README.md | 8 ++++---- VERSION | 2 +- sql_runner/main.go | 2 +- 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5d23302..458c944 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +Version 0.10.0 (2022-06-28) +--------------------------- +Fix out of range panic on invalid runQuery argument (#210) +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) diff --git a/README.md b/README.md index 9fd9de1..998cbf6 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.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 diff --git a/VERSION b/VERSION index b5d0ec5..2774f85 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.8 \ No newline at end of file +0.10.0 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index 6b5e63a..9e13804 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.9.8" + cliVersion = "0.10.0" sqlrootBinary = "BINARY" sqlrootPlaybook = "PLAYBOOK"