Skip to content

Commit 4157b9c

Browse files
committed
Prepare for 1.0.0 release
1 parent 5b00231 commit 4157b9c

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

CHANGELOG

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
1.0.0 (2020-12-22)
2+
------------------
3+
Add coveralls integration (#195)
4+
Use log4j-over-slf4j for log4j logs (#194)
5+
Use sbt-scoverage plugin (#164)
6+
Use sbt-scalafmt plugin (#163)
7+
Bump sbt to 1.4.4 (#167)
8+
Add sink timestamp section into file names (#173)
9+
Set log level of records serialized to DEBUG (#174)
10+
Make it possible to disable KCL CloudWatch metrics (#193)
11+
Handle case where partitionRecords is empty (#192)
12+
Migrate from Travis to GH actions (#181)
13+
Bump specs2-core to 4.10.5 (#189)
14+
Bump iglu-core-json4s to 1.0.0 (#188)
15+
Bump pureconfig to 0.14.0 (#187)
16+
Bump json4s-jackson to 3.6.10 (#190)
17+
Bump cats-core to 2.3.0 (#186)
18+
Bump scopt to 4.0.0 (#185)
19+
Bump Scala tracker to 0.7.0 (#184)
20+
Use hadoop-lzo 0.4.20 from Snowplow Bintray maven (#183)
21+
Bump Scala to 2.13 (#182)
22+
Use random partition key for bad rows (#180)
23+
124
Version 0.7.0 (2019-10-15)
225
--------------------------
326
Update flags to resemble ones used in GCS loader config (#157)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $ sudo apt-get install lzop liblzo2-dev
4545
The Snowplow S3 Loader has the following command-line interface:
4646

4747
```
48-
snowplow-s3-loader: Version 0.7.0
48+
snowplow-s3-loader: Version 1.0.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-
$ java -jar snowplow-s3-loader-0.7.0.jar --config my.conf
68+
$ java -jar snowplow-s3-loader-1.0.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.7.0-blue.svg?style=flat
94+
[release-image]: http://img.shields.io/badge/release-1.0.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.7.0",
18+
version := "1.0.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)