Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeemster committed Jul 17, 2020
1 parent 885fb6e commit 60da085
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
@@ -1,3 +1,10 @@
Version 0.9.0 (2020-07-17)
--------------------------
Replace Vagrant with Docker based development experience (#150)
Update project to use go mod instead of dep (#151)
Update Copyright to 2015-2020 (#152)
Add Snyk Integration (#154)

Version 0.8.0 (2018-11-08)
--------------------------
Add support for BigQuery (#92)
Expand Down
10 changes: 5 additions & 5 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 Bintray:

* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.8.0_darwin_amd64.zip)
* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.8.0_linux_amd64.zip)
* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.8.0_windows_amd64.zip)
* [Darwin (macOS)](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.0_darwin_amd64.zip)
* [Linux](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.0_linux_amd64.zip)
* [Windows](https://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.9.0_windows_amd64.zip)

### CLI Output

```bash
sql-runner version: 0.8.0
sql-runner version: 0.9.0
Run playbooks of SQL scripts in series and parallel on Redshift and Postgres
Usage:
-checkLock string
Expand Down Expand Up @@ -117,7 +117,7 @@ limitations under the License.
[travis]: https://travis-ci.org/snowplow/sql-runner
[travis-image]: https://travis-ci.org/snowplow/sql-runner.png?branch=master
[release-image]: http://img.shields.io/badge/release-0.8.0-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.9.0-6ad7e5.svg?style=flat
[releases]: https://github.com/snowplow/sql-runner/releases
[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.8.0
0.9.0
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 and Postgres`
CLI_VERSION = "0.8.0"
CLI_VERSION = "0.9.0"

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

0 comments on commit 60da085

Please sign in to comment.