From be78e340ae28979add915b65b5bf5fc3a38bc41c Mon Sep 17 00:00:00 2001 From: jbeemster Date: Tue, 17 Nov 2020 11:31:10 +0100 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 7e0f134..b849266 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 0.9.1 (2020-11-17) +-------------------------- +Add ability to template YAML playbook with custom functions (#167) + Version 0.9.0 (2020-07-17) -------------------------- Replace Vagrant with Docker based development experience (#150) diff --git a/README.md b/README.md index 2fda61d..2b42f3e 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,9 @@ 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.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) +* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.1_darwin_amd64.zip) +* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.1_linux_amd64.zip) +* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.1_windows_amd64.zip) ### CLI Output @@ -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.9.0-6ad7e5.svg?style=flat +[release-image]: http://img.shields.io/badge/release-0.9.1-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 899f24f..f514a2f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.0 \ No newline at end of file +0.9.1 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index d8b0f3c..d4dd023 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.9.0" + CLI_VERSION = "0.9.1" SQLROOT_BINARY = "BINARY" SQLROOT_PLAYBOOK = "PLAYBOOK"