From 5933b06028180cb2a87d7f21cfcc40967cf34ac4 Mon Sep 17 00:00:00 2001 From: TiganeteaRobert Date: Thu, 21 Apr 2022 16:45:04 +0300 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 14ced03..5d23302 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 0.9.8 (2022-04-22) +-------------------------- +Add Application to JDBC driver configuration for identifying Snowplow jobs (#198) + Version 0.9.7 (2022-01-25) -------------------------- Handle Snowflake error `-00001:` (#191) diff --git a/README.md b/README.md index 35e9c2b..9fd9de1 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.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) +* [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) ### CLI Output ```bash -sql-runner version: 0.9.7 +sql-runner version: 0.9.8 Run playbooks of SQL scripts in series and parallel on Redshift and Postgres Usage: -checkLock string diff --git a/VERSION b/VERSION index bae256f..b5d0ec5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.7 \ No newline at end of file +0.9.8 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index c7e2d63..d0f4c95 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.7" + CLI_VERSION = "0.9.8" SQLROOT_BINARY = "BINARY" SQLROOT_PLAYBOOK = "PLAYBOOK"