Skip to content

Commit efe56b2

Browse files
committed
chore: update README with version 0.0.4
1 parent be55826 commit efe56b2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ Use it in connector config file:
1515
Use dot notation for deeper fields (e. g. `level1.level2`).
1616

1717
## Install to Kafka Connect
18-
After build copy file `target/stirngify-json-smt-0.0.3-jar-with-deps.jar`
18+
After build copy file `target/stirngify-json-smt-0.0.4-jar-with-deps.jar`
1919
to Kafka Connect container `` copying to its docker image or so.
2020

2121
It can be done adding this line to Dockerfile:
2222
~~~Dockerfile
23-
COPY ./target/stringify-json-smt-0.0.3-jar-with-deps.jar $KAFKA_CONNECT_PLUGINS_DIR
23+
COPY ./target/stringify-json-smt-0.0.4-jar-with-deps.jar $KAFKA_CONNECT_PLUGINS_DIR
2424
~~~
2525

2626
Or download current release:
2727
~~~Dockerfile
2828
RUN curl -fSL -o /tmp/plugin.tar.gz \
29-
https://github.com/max-prosper/stringify-json-smt/releases/download/0.0.3/stringify-json-smt-0.0.3.tar.gz && \
29+
https://github.com/max-prosper/stringify-json-smt/releases/download/0.0.3/stringify-json-smt-0.0.4.tar.gz && \
3030
tar -xzf /tmp/plugin.tar.gz -C $KAFKA_CONNECT_PLUGINS_DIR && \
3131
rm -f /tmp/plugin.tar.gz;
3232
~~~
3333

3434
## Build release file
35-
- Increment version in `pom.xml` (e.g. to `0.0.4`).
35+
- Increment version in `pom.xml` (e.g. to `0.0.5`).
3636
- Run build script: `./scripts/build-release.sh 0.0.4`.
37-
- Take `*.tar.gz` file from `target` folder and publish it.
37+
- Take `*.tar.gz` file from `target` folder and publish it.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.maxprosper.smt.stringifyjson</groupId>
88
<artifactId>stringify-json-smt</artifactId>
9-
<version>0.0.3</version>
9+
<version>0.0.4</version>
1010

1111
<properties>
1212
<commons-lang3.version>3.8.1</commons-lang3.version>

0 commit comments

Comments
 (0)