From f7f99d163f2e3e564e4e45193628870c423c5465 Mon Sep 17 00:00:00 2001 From: colmsnowplow Date: Tue, 25 Jan 2022 16:39:02 +0000 Subject: [PATCH] Prepared for release --- CHANGELOG | 4 ++++ README.md | 8 ++++---- VERSION | 2 +- sql_runner/main.go | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6326a36..f288066 100644 --- a/CHANGELOG +++ b/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) diff --git a/README.md b/README.md index 71d47ac..35e9c2b 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.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 diff --git a/VERSION b/VERSION index 9cf0386..bae256f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.6 \ No newline at end of file +0.9.7 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index 2704e77..c7e2d63 100644 --- a/sql_runner/main.go +++ b/sql_runner/main.go @@ -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"