Skip to content

Commit e8208e8

Browse files
committed
RELEASE-3.5.1: Set version for release
1 parent f749385 commit e8208e8

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
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.5.1-SNAPSHOT</version>
104+
<version>3.5.1</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.5.1-SNAPSHOT'`
110+
`compile group: 'com.yoti', name: 'yoti-sdk-api', version: '3.5.1'`
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
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.yoti</groupId>
5353
<artifactId>yoti-sdk-api</artifactId>
54-
<version>3.5.1-SNAPSHOT</version>
54+
<version>3.5.1</version>
5555
</dependency>
5656
</dependencies>
5757

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.5.1-SNAPSHOT</version>
8+
<version>3.5.1</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.5.1-SNAPSHOT</version>
14+
<version>3.5.1</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
@@ -25,7 +25,7 @@ private YotiConstants() {}
2525
public static final String CONTENT_TYPE_JPEG = "image/jpeg";
2626

2727
public static final String JAVA = "Java";
28-
public static final String SDK_VERSION = JAVA + "-3.5.1-SNAPSHOT";
28+
public static final String SDK_VERSION = JAVA + "-3.5.1";
2929
public static final String SIGNATURE_ALGORITHM = "SHA256withRSA";
3030
public static final String ASYMMETRIC_CIPHER = "RSA/NONE/PKCS1Padding";
3131
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.5.1-SNAPSHOT</version>
8+
<version>3.5.1</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.5.1-SNAPSHOT</version>
14+
<version>3.5.1</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.5.1-SNAPSHOT</version>
21+
<version>3.5.1</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.5.1-SNAPSHOT'
29+
compile group: 'com.yoti', name: 'yoti-sdk-spring-boot-auto-config', version: '3.5.1'
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.5.1-SNAPSHOT</version>
15+
<version>3.5.1</version>
1616
<relativePath>../yoti-sdk-parent</relativePath>
1717
</parent>
1818

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Before you start, you'll need to create an Application in [Yoti Hub](https://hub
1616
<dependency>
1717
<groupId>com.yoti</groupId>
1818
<artifactId>yoti-sdk-api</artifactId>
19-
<version>3.5.1-SNAPSHOT</version>
19+
<version>3.5.1</version>
2020
</dependency>
2121
```
2222

@@ -29,8 +29,8 @@ Before you start, you'll need to create an Application in [Yoti Hub](https://hub
2929
1. Run `mvn clean package` to build the project.
3030

3131
## Running
32-
* You can run your server-app by executing `java -jar target/yoti-sdk-spring-boot-example-3.5.1-SNAPSHOT.jar`
33-
* If you are using Java 9, you can run the server-app as follows `java -jar target/yoti-sdk-spring-boot-example-3.5.1-SNAPSHOT.jar --add-exports java.base/jdk.internal.ref=ALL-UNNAMED`
32+
* You can run your server-app by executing `java -jar target/yoti-sdk-spring-boot-example-3.5.1.jar`
33+
* If you are using Java 9, you can run the server-app as follows `java -jar target/yoti-sdk-spring-boot-example-3.5.1.jar --add-exports java.base/jdk.internal.ref=ALL-UNNAMED`
3434
* Navigate to:
3535
* `https://localhost:8443` to initiate a login using Yoti. The Spring demo is listening for the response on `https://localhost:8443/login`.
3636
* `https://localhost:8443/dynamic-share` to initiate a dynamic share with location with result displayed in profile page.

0 commit comments

Comments
 (0)