Skip to content

Commit efb45c3

Browse files
committed
DEVELOPMENT: Bump version to 4.0.0-SNAPSHOT
1 parent b69ad19 commit efb45c3

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ If you are using Maven, you need to add the following dependency:
101101
<dependency>
102102
<groupId>com.yoti</groupId>
103103
<artifactId>yoti-sdk-api</artifactId>
104-
<version>3.11.0</version>
104+
<version>4.0.0-SNAPSHOT</version>
105105
</dependency>
106106
```
107107

108108
If you are using Gradle, here is the dependency to add:
109109

110-
`compile group: 'com.yoti', name: 'yoti-sdk-api', version: '3.11.0'`
110+
`compile group: 'com.yoti', name: 'yoti-sdk-api', version: '4.0.0-SNAPSHOT'`
111111

112112
You will find all classes packaged under `com.yoti.api`
113113

examples/doc-scan/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>com.yoti</groupId>
5555
<artifactId>yoti-sdk-api</artifactId>
56-
<version>3.11.0</version>
56+
<version>4.0.0-SNAPSHOT</version>
5757
</dependency>
5858
</dependencies>
5959

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.yoti</groupId>
66
<artifactId>yoti-sdk</artifactId>
77
<packaging>pom</packaging>
8-
<version>3.11.0</version>
8+
<version>4.0.0-SNAPSHOT</version>
99
<name>Yoti SDK</name>
1010
<description>Java SDK for simple integration with the Yoti platform</description>
1111
<url>https://github.com/getyoti/yoti-java-sdk</url>

yoti-sdk-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.yoti</groupId>
1313
<artifactId>yoti-sdk-parent</artifactId>
14-
<version>3.11.0</version>
14+
<version>4.0.0-SNAPSHOT</version>
1515
<relativePath>../yoti-sdk-parent</relativePath>
1616
</parent>
1717

yoti-sdk-api/src/main/java/com/yoti/api/client/spi/remote/call/YotiConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ private YotiConstants() {}
2929
public static final String CONTENT_TYPE_JPEG = "image/jpeg";
3030

3131
public static final String JAVA = "Java";
32-
public static final String SDK_VERSION = JAVA + "-3.11.0";
32+
public static final String SDK_VERSION = JAVA + "-4.0.0-SNAPSHOT";
3333
public static final String SIGNATURE_ALGORITHM = "SHA256withRSA";
3434
public static final String ASYMMETRIC_CIPHER = "RSA/NONE/PKCS1Padding";
3535
public static final String SYMMETRIC_CIPHER = "AES/CBC/PKCS7Padding";

yoti-sdk-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.yoti</groupId>
66
<artifactId>yoti-sdk-parent</artifactId>
77
<packaging>pom</packaging>
8-
<version>3.11.0</version>
8+
<version>4.0.0-SNAPSHOT</version>
99
<name>Yoti SDK Parent Pom</name>
1010
<description>Parent pom for the Java SDK projects</description>
1111
<url>https://github.com/getyoti/yoti-java-sdk</url>

yoti-sdk-sandbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.yoti</groupId>
1313
<artifactId>yoti-sdk-parent</artifactId>
14-
<version>3.11.0</version>
14+
<version>4.0.0-SNAPSHOT</version>
1515
<relativePath>../yoti-sdk-parent</relativePath>
1616
</parent>
1717

yoti-sdk-spring-boot-auto-config/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ If you are using Maven, you need to add the following dependencies:
1818
<dependency>
1919
<groupId>com.yoti</groupId>
2020
<artifactId>yoti-sdk-spring-boot-auto-config</artifactId>
21-
<version>3.11.0</version>
21+
<version>4.0.0-SNAPSHOT</version>
2222
</dependency>
2323
```
2424

2525

2626
If you are using Gradle, here is the dependency to add:
2727

2828
```
29-
compile group: 'com.yoti', name: 'yoti-sdk-spring-boot-auto-config', version: '3.11.0'
29+
compile group: 'com.yoti', name: 'yoti-sdk-spring-boot-auto-config', version: '4.0.0-SNAPSHOT'
3030
```
3131

3232

yoti-sdk-spring-boot-auto-config/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.yoti</groupId>
1414
<artifactId>yoti-sdk-parent</artifactId>
15-
<version>3.11.0</version>
15+
<version>4.0.0-SNAPSHOT</version>
1616
<relativePath>../yoti-sdk-parent</relativePath>
1717
</parent>
1818

yoti-sdk-spring-boot-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Note that:
1717
<dependency>
1818
<groupId>com.yoti</groupId>
1919
<artifactId>yoti-sdk-api</artifactId>
20-
<version>3.11.0</version>
20+
<version>4.0.0-SNAPSHOT</version>
2121
</dependency>
2222
```
2323

0 commit comments

Comments
 (0)