Skip to content

Commit 3fdb16f

Browse files
authored
Merge pull request #77 from snowplow/hotfix/0.5.1
Hotfix/0.5.1
2 parents 6a9aaa2 + f7fca8d commit 3fdb16f

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ deploy:
2828
provider: script
2929
script: release-manager --config .release.yml --check-version --make-version --make-artifact --upload-artifact
3030
on:
31-
condition: '"${TRAVIS_GO_VERSION}" == "1.6"'
31+
condition: '"${TRAVIS_GO_VERSION}" == "1.7"'
3232
tags: true
3333

3434
addons:

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 0.5.1 (2016-12-19)
2+
--------------------------
3+
Update travis to deploy on Go 1.7 (#76)
4+
15
Version 0.5.0 (2016-12-12)
26
--------------------------
37
Add ability to set a lockfile for a run (#54)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Used with **[Snowplow] [snowplow]** for scheduled SQL-based transformations of e
1717
Assuming you are running on **64bit Linux**:
1818

1919
```bash
20-
> wget http://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.5.0_linux_amd64.zip
21-
> unzip sql_runner_0.5.0_linux_amd64.zip
20+
> wget http://dl.bintray.com/snowplow/snowplow-generic/sql_runner_0.5.1_linux_amd64.zip
21+
> unzip sql_runner_0.5.1_linux_amd64.zip
2222
> ./sql-runner -usage
2323
```
2424

@@ -38,7 +38,7 @@ limitations under the License.
3838
[travis]: https://travis-ci.org/snowplow/sql-runner
3939
[travis-image]: https://travis-ci.org/snowplow/sql-runner.png?branch=master
4040

41-
[release-image]: http://img.shields.io/badge/release-0.5.0-6ad7e5.svg?style=flat
41+
[release-image]: http://img.shields.io/badge/release-0.5.1-6ad7e5.svg?style=flat
4242
[releases]: https://github.com/snowplow/sql-runner/releases
4343

4444
[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.5.1

sql_runner/main.go

Lines changed: 1 addition & 1 deletion
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 and Postgres`
28-
CLI_VERSION = "0.5.0"
28+
CLI_VERSION = "0.5.1"
2929

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

0 commit comments

Comments
 (0)