Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFradet committed Feb 13, 2018
1 parent 9e604fb commit cd64db6
Show file tree
Hide file tree
Showing 18 changed files with 29 additions and 23 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.4.0 (2018-01-25)
--------------------------
Add option to fetch logs of failing jobflow step (#40)
Reduce repetition in jobflow step logging (#39)
Bump consul to 1.0.2 in .travis.yml (#42)

Version 0.3.0 (2017-05-30)
--------------------------
Short-circuit execution on unset variable (#16)
Expand Down
4 changes: 2 additions & 2 deletions LICENSE-2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2016 Snowplow Analytics Ltd.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -199,4 +199,4 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ 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.3.0_linux_amd64.zip
host> unzip dataflow_runner_0.3.0_linux_amd64.zip
host> wget http://dl.bintray.com/snowplow/snowplow-generic/dataflow_runner_0.4.0_linux_amd64.zip
host> unzip dataflow_runner_0.4.0_linux_amd64.zip
host> ./dataflow-runner --help
```

## Copyright and license

Dataflow Runner is copyright 2016-2017 Snowplow Analytics Ltd.
Dataflow Runner is copyright 2016-2018 Snowplow Analytics Ltd.

Licensed under the **[Apache License, Version 2.0][license]** (the "License");
you may not use this software except in compliance with the License.
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.3.0-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.4.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.3.0
0.4.0
2 changes: 1 addition & 1 deletion src/config_resolver.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/config_resolver_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/emr_cluster.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/emr_cluster_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/job_flow_steps.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/job_flow_steps_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/lock.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/lock_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
6 changes: 3 additions & 3 deletions src/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down Expand Up @@ -30,8 +30,8 @@ import (
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.3.0"
appCopyright = "(c) 2016-2018 Snowplow Analytics Ltd"
cliVersion = "0.4.0"
varDelim = ","
fEmrConfig = "emr-config"
fEmrPlaybook = "emr-playbook"
Expand Down
2 changes: 1 addition & 1 deletion src/s3_downloader.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/s3_downloader_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/test_data_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/utils.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/utils_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2016-2017 Snowplow Analytics Ltd. All rights reserved.
// Copyright (c) 2016-2018 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down

0 comments on commit cd64db6

Please sign in to comment.