Skip to content

Commit 6a04769

Browse files
committed
prepare 1.7.1 release
1 parent fd3491f commit 6a04769

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To add this library to your java project using Maven, add the following dependen
3030
<dependency>
3131
<groupId>dev.samstevens.totp</groupId>
3232
<artifactId>totp</artifactId>
33-
<version>1.7</version>
33+
<version>1.7.1</version>
3434
</dependency>
3535
```
3636

@@ -40,7 +40,7 @@ To add the dependency using Gradle, add the following to the build script:
4040

4141
```
4242
dependencies {
43-
compile 'dev.samstevens.totp:totp:1.7'
43+
compile 'dev.samstevens.totp:totp:1.7.1'
4444
}
4545
```
4646

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>dev.samstevens.totp</groupId>
55
<artifactId>totp-parent</artifactId>
66
<packaging>pom</packaging>
7-
<version>1.7</version>
7+
<version>1.7.1</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<maven.compiler.source>1.8</maven.compiler.source>
@@ -26,7 +26,7 @@
2626

2727
<scm>
2828
<developerConnection>scm:git:[email protected]:samdjstevens/java-totp.git</developerConnection>
29-
<tag>totp-1.7</tag>
29+
<tag>totp-1.7.1</tag>
3030
<url>https://github.com/samdjstevens/java-totp</url>
3131
</scm>
3232

totp-spring-boot-starter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ To get started using the library in a Spring Boot project, add the `totp-spring-
1212
<dependency>
1313
<groupId>dev.samstevens.totp</groupId>
1414
<artifactId>totp-spring-boot-starter</artifactId>
15-
<version>1.7</version>
15+
<version>1.7.1</version>
1616
</dependency>
1717
```
1818

1919
#### Gradle
2020

2121
```
2222
dependencies {
23-
compile 'dev.samstevens.totp:totp-spring-boot-starter:1.7'
23+
compile 'dev.samstevens.totp:totp-spring-boot-starter:1.7.1'
2424
}
2525
```
2626

totp-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>dev.samstevens.totp</groupId>
88
<artifactId>totp-parent</artifactId>
9-
<version>1.7</version>
9+
<version>1.7.1</version>
1010
</parent>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>${project.groupId}</groupId>
2020
<artifactId>totp</artifactId>
21-
<version>1.7</version>
21+
<version>1.7.1</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>org.springframework.boot</groupId>

totp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>dev.samstevens.totp</groupId>
77
<artifactId>totp-parent</artifactId>
8-
<version>1.7</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>totp</artifactId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package dev.samstevens.totp;
22

33
public class TotpInfo {
4-
public static String VERSION = "1.7";
4+
public static String VERSION = "1.7.1";
55
}

0 commit comments

Comments
 (0)