Skip to content

Commit e5016d3

Browse files
committed
Updated version to 2.2.0
1 parent f1fc76d commit e5016d3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

client-cli/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ or, if you want to point to your own keystore:
2929

3030
docker run -p 8686:8686 -it -v /your/local/path/to/java-artefacts/client-cli/keystore:/keystore consumerdatastandardsaustralia/client-cli:x.x.x
3131

32-
Where `x.x.x` is the version, say, `2.1.1`
32+
Where `x.x.x` is the version, say, `2.2.0`
3333

3434
Run locally-built image:
3535

36-
docker run -p 8383:8383 consumerdatastandardsaustralia/data-holder:2.1.2-SNAPSHOT
36+
docker run -p 8383:8383 consumerdatastandardsaustralia/data-holder:2.2.1-SNAPSHOT
3737

3838
### Command Reference
3939

@@ -183,8 +183,8 @@ or in the application.properties file before launching the application with `mvn
183183

184184
Example:
185185

186-
java -Dserver=http://localhost:8383/cds-au/v1 -jar target/client-cli-2.1.1.jar
186+
java -Dserver=http://localhost:8383/cds-au/v1 -jar target/client-cli-2.2.0.jar
187187

188188
or
189189

190-
java -Dserver=http://localhost:8383/cds-au/v1 -jar target/client-cli-2.1.2-SNAPSHOT.jar
190+
java -Dserver=http://localhost:8383/cds-au/v1 -jar target/client-cli-2.2.1-SNAPSHOT.jar

client/src/main/java/au/org/consumerdatastandards/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public ApiClient(boolean validating) {
6565
json = new JSON(validating);
6666

6767
// Set default User-Agent.
68-
setUserAgent("CDS Client/2.1.1/java");
68+
setUserAgent("CDS Client/2.2.0/java");
6969

7070
addDefaultHeader("Accept", "application/json");
7171
addDefaultHeader("Content-Type", "application/json");

data-holder/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you want to pass a [test data file](https://github.com/ConsumerDataStandardsA
2020

2121
java -jar target/data-holder-x.x.x.jar /your/local/path/to/testdata-cli/samples/output/u1-output.json
2222

23-
Where `x.x.x` is the version, say, `2.1.1`
23+
Where `x.x.x` is the version, say, `2.2.0`
2424

2525
## Docker
2626

@@ -36,8 +36,8 @@ If you want to pass a [test data file](https://github.com/ConsumerDataStandardsA
3636

3737
docker run -p 8383:8383 -v /your/local/path/to/testdata-cli/samples/output/u1-output.json:/testdata/u1-output.json consumerdatastandardsaustralia/data-holder:x.x.x /testdata/u1-output.json
3838

39-
Where `x.x.x` is the version, say, `2.1.1`
39+
Where `x.x.x` is the version, say, `2.2.0`
4040

4141
Run locally-built image:
4242

43-
docker run -p 8383:8383 consumerdatastandardsaustralia/data-holder:2.1.2-SNAPSHOT
43+
docker run -p 8383:8383 consumerdatastandardsaustralia/data-holder:2.2.1-SNAPSHOT

0 commit comments

Comments
 (0)