Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFradet committed May 30, 2017
1 parent 4f1fab1 commit 0aa70ec
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Version 0.3.0 (2017-05-30)
--------------------------
Short-circuit execution on unset variable (#16)
Short-circuit execution on unset env variable (#26)
Add timeWithFormat template function (#18)
Add base64 template functions (#19)
Add tags to playbook format (#27)
Add file-based locking (#20)
Add Consul-based locking (#17)
Replace hard-coded template name by the file name (#28)
Return appropriate exit codes (#29)

Version 0.2.0 (2017-03-31)
--------------------------
Update README markdown in according with CommonMark (#14)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Run templatable playbooks of Hadoop/Spark/et al jobs on Amazon EMR.
Assuming you are running on 64bit Linux:

```bash
host> wget http://dl.bintray.com/snowplow/snowplow-generic/dataflow_runner_0.2.0_linux_amd64.zip
host> unzip dataflow_runner_0.2.0_linux_amd64.zip
host> wget http://dl.bintray.com/snowplow/snowplow-generic/dataflow_runner_0.3.0_linux_amd64.zip
host> unzip dataflow_runner_0.3.0_linux_amd64.zip
host> ./dataflow-runner --help
```

Expand All @@ -36,7 +36,7 @@ limitations under the License.
[travis]: https://travis-ci.org/snowplow/dataflow-runner
[travis-image]: https://travis-ci.org/snowplow/dataflow-runner.png?branch=master

[release-image]: http://img.shields.io/badge/release-0.2.0-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.3.0-6ad7e5.svg?style=flat
[releases]: https://github.com/snowplow/dataflow-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.2.0
0.3.0
2 changes: 1 addition & 1 deletion src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const (
appName = "dataflow-runner"
appUsage = "Run templatable playbooks of Hadoop/Spark/et al jobs on Amazon EMR"
appCopyright = "(c) 2016-2017 Snowplow Analytics Ltd"
cliVersion = "0.1.0"
cliVersion = "0.3.0"
varDelim = ","
fEmrConfig = "emr-config"
fEmrPlaybook = "emr-playbook"
Expand Down

0 comments on commit 0aa70ec

Please sign in to comment.