Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adatzer committed Feb 15, 2021
1 parent 38f33cb commit 23ca30b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
24 changes: 11 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.3
0.9.4
2 changes: 1 addition & 1 deletion sql_runner/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 23ca30b

Please sign in to comment.