Skip to content

Commit 8a19dcd

Browse files
author
Bogdan Mocanu
committed
Update the documentation to reference the new 1.4.0 version
1 parent eb1a268 commit 8a19dcd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

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.3.0</version> <!-- or any later version - see README.md in the repository's root -->
40+
<version>1.4.0</version> <!-- or any later version - see README.md in the repository's root -->
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.3.0</version> <!-- or any later version - see README.md in the repository's root -->
48+
<version>1.4.0</version> <!-- or any later version - see README.md in the repository's root -->
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.3.0' // or any later version - see README.md in the repository's root
63+
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.4.0' // or any later version - see README.md in the repository's root
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.3.0' // or any later version - see README.md in the repository's root
65+
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.4.0' // or any later version - see README.md in the repository's root
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.3.0</version> <!-- or any later version - see README.md in the repository's root -->
18+
<version>1.4.0</version> <!-- or any later version - see README.md in the repository's root -->
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.3.0</version> <!-- or any later version - see README.md in the repository's root -->
26+
<version>1.4.0</version> <!-- or any later version - see README.md in the repository's root -->
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.3.0' // or any later version - see README.md in the repository's root
41+
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.4.0' // or any later version - see README.md in the repository's root
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.3.0' // or any later version - see README.md in the repository's root
43+
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.4.0' // or any later version - see README.md in the repository's root
4444
// ...
4545
}
4646
```

0 commit comments

Comments
 (0)