Skip to content

Commit 1426784

Browse files
committed
Prepare for 1.3.1 release
1 parent d0d0119 commit 1426784

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 1.3.1 (2022-06-10)
2+
--------------------------
3+
Fix embedded Iglu repository in docker image (#96)
4+
15
Version 1.3.0 (2022-05-20)
26
--------------------------
37
Bump collector to 2.6.0 and enrich to 3.1.3 (#79)

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ Snowplow Micro is hosted on Docker Hub ([snowplow/snowplow-micro][docker-micro])
1818
The following command can be used to run Micro with the default configuration:
1919

2020
```bash
21-
docker run -p 9090:9090 snowplow/snowplow-micro:1.3.0
21+
docker run -p 9090:9090 snowplow/snowplow-micro:1.3.1
2222
```
2323

2424
A [distroless][distroless-repo] image is also provided, which benefits from being smaller and more secure, with the downside of basic utilities (such as a shell) not being present in the image.
2525

26-
The distroless image is tagged as `snowplow/snowplow-micro:1.3.0-distroless` on Docker Hub.
26+
The distroless image is tagged as `snowplow/snowplow-micro:1.3.1-distroless` on Docker Hub.
2727

2828
#### Configuring Micro
2929

@@ -43,7 +43,7 @@ The configuration files must be placed in a folder that is mounted in the Docker
4343
docker run \
4444
--mount type=bind,source=$(pwd)/example,destination=/config \
4545
-p 9090:9090 \
46-
snowplow/snowplow-micro:1.3.0 \
46+
snowplow/snowplow-micro:1.3.1 \
4747
--collector-config /config/micro.conf \
4848
--iglu /config/iglu.json
4949
```
@@ -67,16 +67,16 @@ example
6767
If you cannot use Docker, a Snowplow Micro jar file is hosted on the [Github releases][gh-releases]. As an example, run Micro as:
6868

6969
```bash
70-
java -jar snowplow-micro-1.3.0.jar --collector-config example/micro.conf --iglu example/iglu.json
70+
java -jar snowplow-micro-1.3.1.jar --collector-config example/micro.conf --iglu example/iglu.json
7171
```
7272

7373
In case you also want an embedded Iglu, apply the same directory structure as shown above and run for example:
7474

7575
```bash
7676
# Unix
77-
java -cp snowplow-micro-1.3.0.jar:example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
77+
java -cp snowplow-micro-1.3.1.jar:example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
7878
# Windows
79-
java -cp snowplow-micro-1.3.0.jar;example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
79+
java -cp snowplow-micro-1.3.1.jar;example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
8080
```
8181

8282
### Send events and start testing

0 commit comments

Comments
 (0)