Skip to content

Commit 70f1692

Browse files
committed
Prepared for release
1 parent e2c32ab commit 70f1692

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 0.11.0 (2025-05-13)
2+
---------------------------
3+
Add support for PrivateKey authentication with the Snowflake Target (#216)
4+
Format code and update COPYRIGHT
5+
Updated out-of-date workflow build files
6+
Updated docker compose for integration tests
7+
Updated Snowflake Driver + Go version
8+
19
Version 0.10.1 (2022-11-17)
210
---------------------------
311
Update GitHub Actions workflows (#213)

README.md

Lines changed: 4 additions & 4 deletions
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.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)
56+
* [Darwin (macOS)](https://github.com/snowplow/sql-runner/releases/download/0.11.0/sql_runner_0.11.0_darwin_amd64.zip)
57+
* [Linux](https://github.com/snowplow/sql-runner/releases/download/0.11.0/sql_runner_0.11.0_linux_amd64.zip)
58+
* [Windows](https://github.com/snowplow/sql-runner/releases/download/0.11.0/sql_runner_0.11.0_windows_amd64.zip)
5959

6060
### CLI Output
6161

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.1
1+
0.11.0

sql_runner/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
const (
2525
cliName = "sql-runner"
2626
cliDescription = `Run playbooks of SQL scripts in series and parallel on Redshift, Postgres, BigQuery and Snowflake`
27-
cliVersion = "0.10.1"
27+
cliVersion = "0.11.0"
2828

2929
sqlrootBinary = "BINARY"
3030
sqlrootPlaybook = "PLAYBOOK"

0 commit comments

Comments
 (0)