File tree 3 files changed +25
-5
lines changed
3 files changed +25
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
21
Version 0.6.0 (2017-09-14)
2
22
--------------------------
3
23
Remove logging section from example config (#115)
Original file line number Diff line number Diff line change @@ -37,15 +37,15 @@ $ sbt assembly
37
37
You must have ` lzop ` and ` lzop-dev ` installed. In Ubuntu, install them like this:
38
38
39
39
``` bash
40
- host $ sudo apt-get install lzop liblzo2-dev
40
+ $ sudo apt-get install lzop liblzo2-dev
41
41
```
42
42
43
43
## Command Line Interface
44
44
45
45
The Snowplow S3 Loader has the following command-line interface:
46
46
47
47
```
48
- snowplow-s3-loader: Version 0.6 .0
48
+ snowplow-s3-loader: Version 0.7 .0
49
49
50
50
Usage: snowplow-s3-loader [options]
51
51
@@ -65,7 +65,7 @@ You will need to edit all fields in the config. Consult [this portion][config]
65
65
Next, start the sink, making sure to specify your new config file:
66
66
67
67
``` 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
69
69
```
70
70
71
71
## Find out more
@@ -91,7 +91,7 @@ limitations under the License.
91
91
[ travis-image ] : https://travis-ci.org/snowplow/snowplow-s3-loader.png?branch=master
92
92
[ travis ] : http://travis-ci.org/snowplow/snowplow-s3-loader
93
93
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
95
95
[ releases ] : https://github.com/snowplow/snowplow-s3-loader/releases
96
96
97
97
[ license-image ] : http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Original file line number Diff line number Diff line change 15
15
lazy val root = project.in(file(" ." ))
16
16
.settings(
17
17
name := " snowplow-s3-loader" ,
18
- version := " 0.6 .0" ,
18
+ version := " 0.7 .0" ,
19
19
description := " Load the contents of a Kinesis stream or NSQ topic to S3"
20
20
)
21
21
.settings(BuildSettings .buildSettings)
You can’t perform that action at this time.
0 commit comments