From 6f3439fb9b4cacff75fd2eaa9cf67d53422c2207 Mon Sep 17 00:00:00 2001 From: colmsnowplow Date: Fri, 14 Jan 2022 18:20:55 +0000 Subject: [PATCH] Prepared for release --- CHANGELOG | 6 ++++++ README.md | 8 ++++---- VERSION | 2 +- sql_runner/main.go | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 069f458..6326a36 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +Version 0.9.6 (2022-01-18) +-------------------------- +Bump dependencies (#187) +Update copyright for 2022 (#189) +Update go version to 1.17 (#190) + Version 0.9.5 (2021-04-30) -------------------------- Upgrade dependencies (#183) diff --git a/README.md b/README.md index 3b7aaa0..71d47ac 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.5/sql_runner_0.9.5_darwin_amd64.zip) -* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_linux_amd64.zip) -* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_windows_amd64.zip) +* [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) ### CLI Output ```bash -sql-runner version: 0.9.5 +sql-runner version: 0.9.6 Run playbooks of SQL scripts in series and parallel on Redshift and Postgres Usage: -checkLock string diff --git a/VERSION b/VERSION index 0383441..9cf0386 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.5 \ No newline at end of file +0.9.6 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index 34789d0..2704e77 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.5" + CLI_VERSION = "0.9.6" SQLROOT_BINARY = "BINARY" SQLROOT_PLAYBOOK = "PLAYBOOK"