Skip to content

Commit 915869f

Browse files
committed
Prepare for 1.3.2 release
1 parent af913f9 commit 915869f

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 1.3.2 (2022-09-09)
2+
--------------------------
3+
Bump enrich to 3.3.1 (#100)
4+
Bump stream-collector to 2.7.1 (#102)
5+
Bump badrows to 2.2.0 (#105)
6+
Bump circe-parser to 0.14.2 (#108)
7+
Use snowplow.io domain (#110)
8+
19
Version 1.3.1 (2022-06-10)
210
--------------------------
311
Fix embedded Iglu repository in docker image (#96)

README.md

+6-6
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.1
21+
docker run -p 9090:9090 snowplow/snowplow-micro:1.3.2
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.1-distroless` on Docker Hub.
26+
The distroless image is tagged as `snowplow/snowplow-micro:1.3.2-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.1 \
46+
snowplow/snowplow-micro:1.3.2 \
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.1.jar --collector-config example/micro.conf --iglu example/iglu.json
70+
java -jar snowplow-micro-1.3.2.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.1.jar:example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
77+
java -cp snowplow-micro-1.3.2.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.1.jar;example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
79+
java -cp snowplow-micro-1.3.2.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)