Skip to content

Commit

Permalink
Merge pull request #77 from snowplow/hotfix/0.5.1
Browse files Browse the repository at this point in the history
Hotfix/0.5.1
  • Loading branch information
jbeemster authored Dec 19, 2016
2 parents 6a9aaa2 + f7fca8d commit 3fdb16f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ deploy:
provider: script
script: release-manager --config .release.yml --check-version --make-version --make-artifact --upload-artifact
on:
condition: '"${TRAVIS_GO_VERSION}" == "1.6"'
condition: '"${TRAVIS_GO_VERSION}" == "1.7"'
tags: true

addons:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 0.5.1 (2016-12-19)
--------------------------
Update travis to deploy on Go 1.7 (#76)

Version 0.5.0 (2016-12-12)
--------------------------
Add ability to set a lockfile for a run (#54)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Used with **[Snowplow] [snowplow]** for scheduled SQL-based transformations of e
Assuming you are running on **64bit Linux**:

```bash
> wget http://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.5.0_linux_amd64.zip
> unzip sql_runner_0.5.0_linux_amd64.zip
> wget http://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.5.1_linux_amd64.zip
> unzip sql_runner_0.5.1_linux_amd64.zip
> ./sql-runner -usage
```

Expand All @@ -38,7 +38,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.5.0-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.5.1-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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.5.1
2 changes: 1 addition & 1 deletion sql_runner/main.go
Original file line number Diff line number Diff line change
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.5.0"
CLI_VERSION = "0.5.1"

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

0 comments on commit 3fdb16f

Please sign in to comment.