Skip to content

Commit 81560a1

Browse files
committed
Prepare for 2.2.0 release
1 parent c72fb76 commit 81560a1

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

CHANGELOG

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 2.2.0 (2022-05-19)
2+
--------------------------
3+
Publish distroless docker image (#258)
4+
Bump jackson-databind to 2.12.6.1 (#260)
5+
Bump amazon-kinesis-client to 1.14.8 (#259)
6+
Split lzo serializers into a separate sbt project (#261)
7+
18
Version 2.1.4 (2022-02-15)
29
--------------------------
310
Update copyright notice to 2022 (#255)

README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,22 @@ The records are treated as byte arrays containing UTF-8 encoded strings (whether
2626

2727
#### Docker
2828

29+
We publish three flavours of the docker image:
30+
- Pull the `:2.2.0` tag if you only need GZip output format
31+
- Pull the `:2.2.0-lzo` tag if you also need LZO output format
32+
- Pull the `:2.2.0-distroless` tag for an lightweight alternative to `:2.2.0`
33+
34+
2935
```bash
30-
docker run snowplow/snowplow-s3-loader:2.1.4 --help
36+
docker run snowplow/snowplow-s3-loader:2.2.0 --help
37+
docker run snowplow/snowplow-s3-loader:2.2.0-lzo --help
38+
docker run snowplow/snowplow-s3-loader:2.2.0-distroless --help
3139
```
3240

3341
#### Download jar
3442

3543
```bash
36-
curl -Lo snowplow-s3-loader.jar https://github.com/snowplow/snowplow-s3-loader/releases/download/2.1.4/snowplow-s3-loader-2.1.4.jar
44+
curl -Lo snowplow-s3-loader.jar https://github.com/snowplow/snowplow-s3-loader/releases/download/2.2.0/snowplow-s3-loader-2.2.0.jar
3745
java -jar snowplow-s3-loader.jar --help
3846
```
3947

@@ -60,7 +68,7 @@ $ sudo apt-get install lzop liblzo2-dev
6068
The Snowplow S3 Loader has the following command-line interface:
6169

6270
```
63-
snowplow-s3-loader: Version 2.1.4
71+
snowplow-s3-loader: Version 2.2.0
6472
6573
Usage: snowplow-s3-loader [options]
6674
@@ -80,7 +88,7 @@ You will need to edit all fields in the config. Consult [the configuration refe
8088
Next, start the sink, making sure to specify your new config file:
8189

8290
```bash
83-
$ java -jar snowplow-s3-loader-2.1.4.jar --config my.conf
91+
$ java -jar snowplow-s3-loader-2.2.0.jar --config my.conf
8492
```
8593

8694
## Find out more
@@ -106,7 +114,7 @@ limitations under the License.
106114
[travis-image]: https://travis-ci.org/snowplow/snowplow-s3-loader.png?branch=master
107115
[travis]: http://travis-ci.org/snowplow/snowplow-s3-loader
108116

109-
[release-image]: http://img.shields.io/badge/release-2.1.4-blue.svg?style=flat
117+
[release-image]: http://img.shields.io/badge/release-2.2.0-blue.svg?style=flat
110118
[releases]: https://github.com/snowplow/snowplow-s3-loader/releases
111119

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

0 commit comments

Comments
 (0)