Skip to content

Commit 9a550ed

Browse files
author
Bogdan Mocanu
committed
Bump the library version to 1.5.2. Update the documentation to reference the new version
1 parent b20be85 commit 9a550ed

9 files changed

Lines changed: 21 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mobile ID Java client (v1.5.1)
1+
# Mobile ID Java client (v1.5.2)
22

33
Swisscom Mobile ID is a cost-efficient, managed authentication service from Swisscom. The customer-facing API is
44
based on open standard ETSI 102 2041. The library from this repository is a reference implementation for

docs/build-download-or-link.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ For Maven projects, add the following in your _POM_ file:
3737
<dependency>
3838
<groupId>ch.mobileid.mid-java-client</groupId>
3939
<artifactId>mid-java-client-rest</artifactId>
40-
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
40+
<version>x.y.z</version> <!-- use here the latest version - see README.md in the repository's root or the Releases page of this repository -->
4141
</dependency>
4242
</dependencies>
4343
<!-- Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense -->
4444
<dependencies>
4545
<dependency>
4646
<groupId>ch.mobileid.mid-java-client</groupId>
4747
<artifactId>mid-java-client-soap</artifactId>
48-
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
48+
<version>x.y.z</version> <!-- use here the latest version - see README.md in the repository's root or the Releases page of this repository -->
4949
</dependency>
5050
</dependencies>
5151
</project>
@@ -60,9 +60,9 @@ plugins {
6060
// ...
6161
6262
dependencies {
63-
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.5.1' // or any later version - see README.md in the repository's root
63+
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:x.y.z' // use the latest version - see README.md in the repository's root or the Releases page of this repository
6464
// Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense
65-
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.5.1' // or any later version - see README.md in the repository's root
65+
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:x.y.z' // use the latest version - see README.md in the repository's root or the Releases page of this repository
6666
// ...
6767
}
6868
```

docs/use-the-client-programmatically.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ For Maven projects, add the following in your _POM_ file:
1515
<dependency>
1616
<groupId>ch.mobileid.mid-java-client</groupId>
1717
<artifactId>mid-java-client-rest</artifactId>
18-
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
18+
<version>x.y.z</version> <!-- use here the latest version - see README.md in the repository's root or the Releases page of this repository -->
1919
</dependency>
2020
</dependencies>
2121
<!-- Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense -->
2222
<dependencies>
2323
<dependency>
2424
<groupId>ch.mobileid.mid-java-client</groupId>
2525
<artifactId>mid-java-client-soap</artifactId>
26-
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
26+
<version>x.y.z</version> <!-- use here the latest version - see README.md in the repository's root or the Releases page of this repository -->
2727
</dependency>
2828
</dependencies>
2929
</project>
@@ -38,9 +38,9 @@ plugins {
3838
// ...
3939
4040
dependencies {
41-
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.5.1' // or any later version - see README.md in the repository's root
41+
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:x.y.z' // use the latest version - see README.md in the repository's root or the Releases page of this repository
4242
// Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense
43-
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.5.1' // or any later version - see README.md in the repository's root
43+
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:x.y.z' // use the latest version - see README.md in the repository's root or the Releases page of this repository
4444
// ...
4545
}
4646
```

docs/version-history.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Version history
22

3+
# v1.5.2
4+
Update most of the libraries to their latest versions. Fix two vulnerabilities reported by Dependabot for the Jackson Databind libraries.
5+
36
# v1.5.1
47
Update the jackson-databind and woodstox-core libraries to newer versions to overcome the vulnerabilities reported by Sonatype Lift.
58

mid-java-client-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.5.2</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-core</artifactId>
13-
<version>1.6.0</version>
13+
<version>1.5.2</version>
1414
<name>mid-java-client-core</name>
1515
<description>MobileID Java Client - Core Functionality</description>
1616
<packaging>jar</packaging>

mid-java-client-rest/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.5.2</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-rest</artifactId>
13-
<version>1.6.0</version>
13+
<version>1.5.2</version>
1414
<name>mid-java-client-rest</name>
1515
<description>MobileID Java Client - REST Implementation</description>
1616
<packaging>jar</packaging>

mid-java-client-soap/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.5.2</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-soap</artifactId>
13-
<version>1.6.0</version>
13+
<version>1.5.2</version>
1414
<name>mid-java-client-soap</name>
1515
<description>MobileID Java Client - SOAP Implementation</description>
1616
<packaging>jar</packaging>

mid-java-client-usage/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.5.2</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-usage</artifactId>
13-
<version>1.6.0</version>
13+
<version>1.5.2</version>
1414
<name>mid-java-client-usage</name>
1515
<description>MobileID Java Client - Usage samples</description>
1616
<packaging>jar</packaging>

pom.xml

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

77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.5.2</version>
1010
<name>Mobile ID Java client</name>
1111
<description>Mobile ID client reference implementation in Java</description>
1212
<url>https://github.com/MobileID-Strong-Authentication/mobileid-client-java</url>

0 commit comments

Comments
 (0)