From 60da0858803f11ef2212a43ce0d4315e1cedf41c Mon Sep 17 00:00:00 2001 From: jbeemster Date: Fri, 17 Jul 2020 13:36:34 +0200 Subject: [PATCH] Prepared for release --- CHANGELOG | 7 +++++++ README.md | 10 +++++----- VERSION | 2 +- sql_runner/main.go | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f4527f7..7e0f134 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +Version 0.9.0 (2020-07-17) +-------------------------- +Replace Vagrant with Docker based development experience (#150) +Update project to use go mod instead of dep (#151) +Update Copyright to 2015-2020 (#152) +Add Snyk Integration (#154) + Version 0.8.0 (2018-11-08) -------------------------- Add support for BigQuery (#92) diff --git a/README.md b/README.md index 37c5791..2fda61d 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 Bintray: -* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.8.0_darwin_amd64.zip) -* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.8.0_linux_amd64.zip) -* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.8.0_windows_amd64.zip) +* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.0_darwin_amd64.zip) +* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.0_linux_amd64.zip) +* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.0_windows_amd64.zip) ### CLI Output ```bash -sql-runner version: 0.8.0 +sql-runner version: 0.9.0 Run playbooks of SQL scripts in series and parallel on Redshift and Postgres Usage: -checkLock string @@ -117,7 +117,7 @@ limitations under the License. [travis]: https://travis-ci.org/snowplow/sql-runner [travis-image]: https://travis-ci.org/snowplow/sql-runner.png?branch=master -[release-image]: http://img.shields.io/badge/release-0.8.0-6ad7e5.svg?style=flat +[release-image]: http://img.shields.io/badge/release-0.9.0-6ad7e5.svg?style=flat [releases]: https://github.com/snowplow/sql-runner/releases [license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat diff --git a/VERSION b/VERSION index 8adc70f..899f24f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.0 \ No newline at end of file +0.9.0 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index b9e4e8c..d8b0f3c 100644 --- a/sql_runner/main.go +++ b/sql_runner/main.go @@ -25,7 +25,7 @@ import ( const ( CLI_NAME = "sql-runner" CLI_DESCRIPTION = `Run playbooks of SQL scripts in series and parallel on Redshift and Postgres` - CLI_VERSION = "0.8.0" + CLI_VERSION = "0.9.0" SQLROOT_BINARY = "BINARY" SQLROOT_PLAYBOOK = "PLAYBOOK"