Skip to content

Commit e27bf93

Browse files
chuwypeel
authored andcommitted
Prepare for release
1 parent c7eb611 commit e27bf93

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

CHANGELOG

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Version 0.7.0 (2019-10-15)
2+
--------------------------
3+
Update flags to resemble ones used in GCS loader config (#157)
4+
Bump sbt-assembly to 0.14.10 (#156)
5+
Add sbt-native-packager and Docker config (#152)
6+
Extend copyright notice to 2019 (#154)
7+
Change Travis distribution to Trusty (#155)
8+
Add Docker Hub credentials to .travis.yml (#153)
9+
Remove vagrant setup (#140)
10+
Replace scalaz by cats (#148)
11+
Add partitioning for self-describing types (#146)
12+
Bump SBT to 1.2.8 (#151)
13+
Remove curly braces from transformed directory pattern (#137)
14+
Allow configurable and dynamic s3 path (#134)
15+
Allow override of kinesis and s3 endpoints in configuration (#131)
16+
Document that maxTimeout is in milliseconds (#129)
17+
Move Twitter repo to https (#127)
18+
Remove colons from NSQ filenames (#125)
19+
20+
121
Version 0.6.0 (2017-09-14)
222
--------------------------
323
Remove logging section from example config (#115)

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ $ sbt assembly
3737
You must have `lzop` and `lzop-dev` installed. In Ubuntu, install them like this:
3838

3939
```bash
40-
host$ sudo apt-get install lzop liblzo2-dev
40+
$ sudo apt-get install lzop liblzo2-dev
4141
```
4242

4343
## Command Line Interface
4444

4545
The Snowplow S3 Loader has the following command-line interface:
4646

4747
```
48-
snowplow-s3-loader: Version 0.6.0
48+
snowplow-s3-loader: Version 0.7.0
4949
5050
Usage: snowplow-s3-loader [options]
5151
@@ -65,7 +65,7 @@ You will need to edit all fields in the config. Consult [this portion][config]
6565
Next, start the sink, making sure to specify your new config file:
6666

6767
```bash
68-
guest$ java -jar snowplow-s3-loader-0.6.0.jar --config my.conf
68+
$ java -jar snowplow-s3-loader-0.7.0.jar --config my.conf
6969
```
7070

7171
## Find out more
@@ -91,7 +91,7 @@ limitations under the License.
9191
[travis-image]: https://travis-ci.org/snowplow/snowplow-s3-loader.png?branch=master
9292
[travis]: http://travis-ci.org/snowplow/snowplow-s3-loader
9393

94-
[release-image]: http://img.shields.io/badge/release-0.6.0-blue.svg?style=flat
94+
[release-image]: http://img.shields.io/badge/release-0.7.0-blue.svg?style=flat
9595
[releases]: https://github.com/snowplow/snowplow-s3-loader/releases
9696

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

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
lazy val root = project.in(file("."))
1616
.settings(
1717
name := "snowplow-s3-loader",
18-
version := "0.6.0",
18+
version := "0.7.0",
1919
description := "Load the contents of a Kinesis stream or NSQ topic to S3"
2020
)
2121
.settings(BuildSettings.buildSettings)

0 commit comments

Comments
 (0)