From 23ca30b6d2aef78472e32b9009b534d7bbfd6a70 Mon Sep 17 00:00:00 2001 From: adatzer Date: Sat, 13 Feb 2021 16:06:51 +0200 Subject: [PATCH] Prepared for release --- CHANGELOG | 4 ++++ README.md | 24 +++++++++++------------- VERSION | 2 +- sql_runner/main.go | 2 +- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c2f2190..33301bd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 0.9.4 (2021-02-15) +-------------------------- +Remove Bintray (closes #179) + Version 0.9.3 (2021-01-25) -------------------------- Migrate to Github actions for CI/CD (closes #158) diff --git a/README.md b/README.md index 2e1da72..6b14a6f 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ Run playbooks of SQL scripts in series and parallel on Snowflake DB, Amazon Reds Used with **[Snowplow][snowplow]** for scheduled SQL-based transformations of event stream data. -| **[Devops Guide][devops-guide]** | **[Analysts Guide][analysts-guide]** | **[Developers Guide][developers-guide]** | -|:--------------------------------------:|:-----------------------------------------:|:---------------------------------------------:| -| [![i1][devops-image]][devops-guide] | [![i2][analysts-image]][analysts-guide] | [![i3][developers-image]][developers-guide] | +| **[Setup Guide][setup-guide]** | **[User Guide][user-guide]** | +|:--------------------------------------:|:-----------------------------------------:| +| [![i1][setup-image]][setup-guide] | [![i2][user-image]][user-guide] | ## Quick start @@ -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.3/sql_runner_0.9.3_darwin_amd64.zip) -* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.3/sql_runner_0.9.3_linux_amd64.zip) -* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.3/sql_runner_0.9.3_windows_amd64.zip) +* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.9.4/sql_runner_0.9.4_darwin_amd64.zip) +* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.4/sql_runner_0.9.4_linux_amd64.zip) +* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.4/sql_runner_0.9.4_windows_amd64.zip) ### CLI Output ```bash -sql-runner version: 0.9.3 +sql-runner version: 0.9.4 Run playbooks of SQL scripts in series and parallel on Redshift and Postgres Usage: -checkLock string @@ -131,10 +131,8 @@ limitations under the License. [snowplow]: https://github.com/snowplow/snowplow -[analysts-guide]: https://github.com/snowplow/sql-runner/wiki/Guide-for-analysts -[developers-guide]: https://github.com/snowplow/sql-runner/wiki/Guide-for-developers -[devops-guide]: https://github.com/snowplow/sql-runner/wiki/Guide-for-devops +[setup-guide]: https://docs.snowplowanalytics.com/docs/modeling-your-data/setup-and-run-sql-runner/ +[user-guide]: https://docs.snowplowanalytics.com/docs/modeling-your-data/setup-and-run-sql-runner/#User_guide -[devops-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png -[analysts-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png -[developers-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png +[setup-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png +[user-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png diff --git a/VERSION b/VERSION index b3ec163..2bd77c7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.3 \ No newline at end of file +0.9.4 \ No newline at end of file diff --git a/sql_runner/main.go b/sql_runner/main.go index 5b6d935..9570d96 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, Postgres, BigQuery and Snowflake` - CLI_VERSION = "0.9.3" + CLI_VERSION = "0.9.4" SQLROOT_BINARY = "BINARY" SQLROOT_PLAYBOOK = "PLAYBOOK"