Skip to content

Commit 1f679ab

Browse files
committed
Prepared for release
1 parent 570952d commit 1f679ab

File tree

5 files changed

+21
-18
lines changed

5 files changed

+21
-18
lines changed

CHANGELOG

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1+
Version 0.9.5 (2021-04-30)
2+
--------------------------
3+
Upgrade dependencies (#183)
4+
15
Version 0.9.4 (2021-02-15)
26
--------------------------
3-
Remove Bintray (closes #179)
7+
Remove Bintray (#179)
48

59
Version 0.9.3 (2021-01-25)
610
--------------------------
7-
Migrate to Github actions for CI/CD (closes #158)
8-
Update Copyright to 2015-2021 (closes #177)
9-
Snowflake: convert query output to string before printing (closes #166)
10-
Commented lines execute as empty SQL statements in Snowflake (closes #119)
11-
Add Snowflake reference to application description in help message (closes #132)
11+
Migrate to Github actions for CI/CD (#158)
12+
Update Copyright to 2015-2021 (#177)
13+
Snowflake: convert query output to string before printing (#166)
14+
Commented lines execute as empty SQL statements in Snowflake (#119)
15+
Add Snowflake reference to application description in help message (#132)
1216

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

1923
Version 0.9.1 (2020-11-17)
2024
--------------------------

LICENSE-2.0.txt LICENSE

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
Apache License
32
Version 2.0, January 2004
43
http://www.apache.org/licenses/
@@ -187,7 +186,7 @@
187186
same "printed page" as the copyright notice for easier
188187
identification within third-party archives.
189188

190-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2015-2021 Snowplow Analytics Ltd.
191190

192191
Licensed under the Apache License, Version 2.0 (the "License");
193192
you may not use this file except in compliance with the License.
@@ -199,4 +198,4 @@
199198
distributed under the License is distributed on an "AS IS" BASIS,
200199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201200
See the License for the specific language governing permissions and
202-
limitations under the License.
201+
limitations under the License.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ guest> make format
5353

5454
First either compile the binary from source using the above `make` command or download the published Binary directly from the GitHub release:
5555

56-
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.9.4/sql_runner_0.9.4_darwin_amd64.zip)
57-
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.4/sql_runner_0.9.4_linux_amd64.zip)
58-
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.4/sql_runner_0.9.4_windows_amd64.zip)
56+
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_darwin_amd64.zip)
57+
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_linux_amd64.zip)
58+
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.9.5/sql_runner_0.9.5_windows_amd64.zip)
5959

6060
### CLI Output
6161

6262
```bash
63-
sql-runner version: 0.9.4
63+
sql-runner version: 0.9.5
6464
Run playbooks of SQL scripts in series and parallel on Redshift and Postgres
6565
Usage:
6666
-checkLock string

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.4
1+
0.9.5

sql_runner/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
const (
2626
CLI_NAME = "sql-runner"
2727
CLI_DESCRIPTION = `Run playbooks of SQL scripts in series and parallel on Redshift, Postgres, BigQuery and Snowflake`
28-
CLI_VERSION = "0.9.4"
28+
CLI_VERSION = "0.9.5"
2929

3030
SQLROOT_BINARY = "BINARY"
3131
SQLROOT_PLAYBOOK = "PLAYBOOK"

0 commit comments

Comments
 (0)