Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adatzer committed Apr 29, 2021
1 parent 570952d commit 1f679ab
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 18 deletions.
22 changes: 13 additions & 9 deletions CHANGELOG
@@ -1,20 +1,24 @@
Version 0.9.5 (2021-04-30)
--------------------------
Upgrade dependencies (#183)

Version 0.9.4 (2021-02-15)
--------------------------
Remove Bintray (closes #179)
Remove Bintray (#179)

Version 0.9.3 (2021-01-25)
--------------------------
Migrate to Github actions for CI/CD (closes #158)
Update Copyright to 2015-2021 (closes #177)
Snowflake: convert query output to string before printing (closes #166)
Commented lines execute as empty SQL statements in Snowflake (closes #119)
Add Snowflake reference to application description in help message (closes #132)
Migrate to Github actions for CI/CD (#158)
Update Copyright to 2015-2021 (#177)
Snowflake: convert query output to string before printing (#166)
Commented lines execute as empty SQL statements in Snowflake (#119)
Add Snowflake reference to application description in help message (#132)

Version 0.9.2 (2020-12-15)
--------------------------
BigQuery: Run multiple-step queries as single script (closes #169)
BigQuery: Explicitly set Client.Location from the region playbook variable (closes #173)
Bump Travis Golang version to 1.15 (closes #174)
BigQuery: Run multiple-step queries as single script (#169)
BigQuery: Explicitly set Client.Location from the region playbook variable (#173)
Bump Travis Golang version to 1.15 (#174)

Version 0.9.1 (2020-11-17)
--------------------------
Expand Down
5 changes: 2 additions & 3 deletions LICENSE-2.0.txt → LICENSE
@@ -1,4 +1,3 @@

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
Expand Down Expand Up @@ -187,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2015-2021 Snowplow Analytics Ltd.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -199,4 +198,4 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
8 changes: 4 additions & 4 deletions README.md
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.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)
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_darwin_amd64.zip)
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_linux_amd64.zip)
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_windows_amd64.zip)

### CLI Output

```bash
sql-runner version: 0.9.4
sql-runner version: 0.9.5
Run playbooks of SQL scripts in series and parallel on Redshift and Postgres
Usage:
-checkLock string
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.9.4
0.9.5
2 changes: 1 addition & 1 deletion sql_runner/main.go
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.4"
CLI_VERSION = "0.9.5"

SQLROOT_BINARY = "BINARY"
SQLROOT_PLAYBOOK = "PLAYBOOK"
Expand Down

0 comments on commit 1f679ab

Please sign in to comment.