Skip to content

Commit 1c6c4d9

Browse files
committed
v1_4_1: Set version names to 1.4.1
1 parent 554cea6 commit 1c6c4d9

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ If you are using Maven, you need to add the following dependency:
9696
<dependency>
9797
<groupId>com.yoti</groupId>
9898
<artifactId>yoti-sdk-impl</artifactId>
99-
<version>1.4.1-SNAPSHOT</version>
99+
<version>1.4.1</version>
100100
</dependency>
101101
```
102102

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.yoti</groupId>
55
<artifactId>yoti-sdk</artifactId>
66
<packaging>pom</packaging>
7-
<version>1.4.1-SNAPSHOT</version>
7+
<version>1.4.1</version>
88
<name>Yoti SDK</name>
99
<description>Java SDK for simple integration with the Yoti platform</description>
1010
<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
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.yoti</groupId>
66
<artifactId>yoti-sdk-api</artifactId>
7-
<version>1.4.1-SNAPSHOT</version>
7+
<version>1.4.1</version>
88
<name>Yoti SDK API</name>
99
<description>Java SDK for simple integration with the Yoti platform</description>
1010
<url>https://github.com/getyoti/yoti-java-sdk</url>

yoti-sdk-impl/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.yoti</groupId>
66
<artifactId>yoti-sdk-impl</artifactId>
7-
<version>1.4.1-SNAPSHOT</version>
7+
<version>1.4.1</version>
88
<name>Yoti SDK implementation package</name>
99
<description>Java SDK for simple integration with the Yoti platform</description>
1010
<url>https://github.com/getyoti/yoti-java-sdk</url>
@@ -28,7 +28,7 @@
2828
</developers>
2929

3030
<properties>
31-
<yoti.sdk.version>1.4.1-SNAPSHOT</yoti.sdk.version>
31+
<yoti.sdk.version>1.4.1</yoti.sdk.version>
3232
<maven.compiler.source>1.6</maven.compiler.source>
3333
<maven.compiler.target>1.6</maven.compiler.target>
3434
<owasp.dependency.check.cvss.limit>4</owasp.dependency.check.cvss.limit>

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>1.4.1-SNAPSHOT</version>
21+
<version>1.4.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: '1.4.1-SNAPSHOT'
29+
compile group: 'com.yoti', name: 'yoti-sdk-spring-boot-auto-config', version: '1.4.1'
3030
```
3131

3232

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<properties>
8-
<yoti.sdk.version>1.4.1-SNAPSHOT</yoti.sdk.version>
8+
<yoti.sdk.version>1.4.1</yoti.sdk.version>
99
<maven.compiler.source>1.6</maven.compiler.source>
1010
<maven.compiler.target>1.6</maven.compiler.target>
1111
<owasp.dependency.check.cvss.limit>4</owasp.dependency.check.cvss.limit>
@@ -15,7 +15,7 @@
1515

1616
<groupId>com.yoti</groupId>
1717
<artifactId>yoti-sdk-spring-boot-auto-config</artifactId>
18-
<version>1.4.1-SNAPSHOT</version>
18+
<version>1.4.1</version>
1919
<name>Yoti Spring Boot Integration</name>
2020
<description>Library to integrate the Java Yoti SDK with Spring Boot Applications</description>
2121
<url>https://github.com/getyoti/yoti-java-sdk</url>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Before you start, you'll need to create an Application in [Dashboard](https://ww
1616
<dependency>
1717
<groupId>com.yoti</groupId>
1818
<artifactId>yoti-sdk-impl</artifactId>
19-
<version>1.4.1-SNAPSHOT</version>
19+
<version>1.4.1</version>
2020
</dependency>
2121
```
2222

yoti-sdk-spring-boot-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.yoti</groupId>
66
<artifactId>yoti-sdk-spring-boot-example</artifactId>
7-
<version>1.4.1-SNAPSHOT</version>
7+
<version>1.4.1</version>
88
<name>Yoti Spring Boot Example</name>
99
<parent>
1010
<groupId>org.springframework.boot</groupId>
@@ -13,7 +13,7 @@
1313
<relativePath /> <!-- lookup parent from repository -->
1414
</parent>
1515
<properties>
16-
<yoti.sdk.version>1.4.1-SNAPSHOT</yoti.sdk.version>
16+
<yoti.sdk.version>1.4.1</yoti.sdk.version>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<java.version>1.8</java.version>
1919
</properties>

yoti-sdk-spring-security/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you are using Maven, you need to add the following dependencies:
2525
<dependency>
2626
<groupId>com.yoti</groupId>
2727
<artifactId>yoti-sdk-spring-security</artifactId>
28-
<version>1.4.1-SNAPSHOT</version>
28+
<version>1.4.1</version>
2929
</dependency>
3030
```
3131

yoti-sdk-spring-security/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<properties>
8-
<yoti.sdk.version>1.4.1-SNAPSHOT</yoti.sdk.version>
8+
<yoti.sdk.version>1.4.1</yoti.sdk.version>
99
<maven.compiler.source>1.6</maven.compiler.source>
1010
<maven.compiler.target>1.6</maven.compiler.target>
1111
<owasp.dependency.check.cvss.limit>4</owasp.dependency.check.cvss.limit>
@@ -15,7 +15,7 @@
1515

1616
<groupId>com.yoti</groupId>
1717
<artifactId>yoti-sdk-spring-security</artifactId>
18-
<version>1.4.1-SNAPSHOT</version>
18+
<version>1.4.1</version>
1919
<name>Spring Security Integration For The Yoti SDK</name>
2020
<description>Library to integrate the Java Yoti SDK with Spring Security</description>
2121
<url>https://github.com/getyoti/yoti-java-sdk</url>

0 commit comments

Comments
 (0)