Skip to content

Commit 84bef82

Browse files
committed
Prepared for release
1 parent aa582fb commit 84bef82

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CHANGELOG

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 0.10.1 (2022-11-17)
2+
---------------------------
3+
Update GitHub Actions workflows (#213)
4+
Fix matching to gosnowflake ErrUnknownError (#212)
5+
Update Snowflake driver to v1.6.13 (#211)
6+
17
Version 0.10.0 (2022-06-28)
28
---------------------------
39
Fix out of range panic on invalid runQuery argument (#210)

README.md

+6-6
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.10.0/sql_runner_0.10.0_darwin_amd64.zip)
57-
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.10.0/sql_runner_0.10.0_linux_amd64.zip)
58-
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.10.0/sql_runner_0.10.0_windows_amd64.zip)
56+
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.10.1/sql_runner_0.10.1_darwin_amd64.zip)
57+
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.10.1/sql_runner_0.10.1_linux_amd64.zip)
58+
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.10.1/sql_runner_0.10.1_windows_amd64.zip)
5959

6060
### CLI Output
6161

6262
```bash
63-
sql-runner version: 0.10.0
63+
sql-runner version: 0.10.1
6464
Run playbooks of SQL scripts in series and parallel on Redshift and Postgres
6565
Usage:
6666
-checkLock string
@@ -131,8 +131,8 @@ limitations under the License.
131131
132132
[snowplow]: https://github.com/snowplow/snowplow
133133
134-
[setup-guide]: https://docs.snowplowanalytics.com/docs/modeling-your-data/setup-and-run-sql-runner/
135-
[user-guide]: https://docs.snowplowanalytics.com/docs/modeling-your-data/setup-and-run-sql-runner/#User_guide
134+
[setup-guide]: https://docs.snowplow.io/docs/modeling-your-data/modeling-your-data-with-sql-runner/
135+
[user-guide]: https://docs.snowplow.io/docs/modeling-your-data/modeling-your-data-with-sql-runner/#user-guide
136136
137137
[setup-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png
138138
[user-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0
1+
0.10.1

sql_runner/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
const (
2727
cliName = "sql-runner"
2828
cliDescription = `Run playbooks of SQL scripts in series and parallel on Redshift, Postgres, BigQuery and Snowflake`
29-
cliVersion = "0.10.0"
29+
cliVersion = "0.10.1"
3030

3131
sqlrootBinary = "BINARY"
3232
sqlrootPlaybook = "PLAYBOOK"

0 commit comments

Comments
 (0)