Skip to content

Commit 564d12d

Browse files
committed
Prepare for 2.0.0 release
1 parent 8611a8a commit 564d12d

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed

CHANGELOG

+28-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
1-
1.0.0 (2020-12-22)
2-
------------------
1+
Version 2.0.0 (2021-07-03)
2+
--------------------------
3+
Use AdoptOpenJDK 11 as docker base image (#224)
4+
Use snowplow-badrows (#215)
5+
Use sbt-tpolecat (#222)
6+
Report metrics to StatsD (#216)
7+
Integrate Sentry (close #218)
8+
Redesign config file structure (#214)
9+
Harmonize module structure (#210)
10+
Drop NSQ support (#211)
11+
Attach jar files to Github releases (#197)
12+
Extend copyright notice to 2021 (#219)
13+
Apply automated code-formatting (#221)
14+
Point to Snowplow roadmap in the README (#220)
15+
Replace joda-time by java-time (#202)
16+
Replace scopt by decline (#201)
17+
Remove json4s dependency (#200)
18+
Bump Scala to 2.13.6 (#223)
19+
Bump hadoop-common to 2.7.7 (#208)
20+
Bump jackson to 2.9.10.8 (#207)
21+
Bump amazon-kinesis-client to 1.14.2 (#206)
22+
Bump sbt-native-packager to 1.8.1 (#205)
23+
Bump pureconfig to 0.14.1 (#203)
24+
Bump base-debian to 0.2.2 (#199)
25+
Bump sbt to 1.5.2 (#198)
26+
27+
Version 1.0.0 (2020-12-22)
28+
--------------------------
329
Add coveralls integration (#195)
430
Use log4j-over-slf4j for log4j logs (#194)
531
Use sbt-scoverage plugin (#164)
@@ -40,7 +66,6 @@ Document that maxTimeout is in milliseconds (#129)
4066
Move Twitter repo to https (#127)
4167
Remove colons from NSQ filenames (#125)
4268

43-
4469
Version 0.6.0 (2017-09-14)
4570
--------------------------
4671
Remove logging section from example config (#115)

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 1.0.0
48+
snowplow-s3-loader: Version 2.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-1.0.0.jar --config my.conf
68+
$ java -jar snowplow-s3-loader-2.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-1.0.0-blue.svg?style=flat
94+
[release-image]: http://img.shields.io/badge/release-2.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 := "1.0.0",
18+
version := "2.0.0",
1919
description := "Load the contents of a Kinesis stream topic to S3"
2020
)
2121
.settings(BuildSettings.basicSettings)

0 commit comments

Comments
 (0)