Skip to content

Commit e154ad3

Browse files
committed
set snapshot
1 parent 4cd3282 commit e154ad3

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To add this library to your java project using Maven, add the following dependen
3434
<dependency>
3535
<groupId>dev.samstevens.totp</groupId>
3636
<artifactId>totp-hangar</artifactId>
37-
<version>1.7.1</version>
37+
<version>1.7.2-SNAPSHOT</version>
3838
</dependency>
3939
```
4040

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

4545
```
4646
dependencies {
47-
compile 'dev.samstevens.totp:totp-hangar:1.7.1'
47+
compile 'dev.samstevens.totp:totp-hangar:1.7.2-SNAPSHOT'
4848
}
4949
```
5050

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>dev.samstevens.totp</groupId>
66
<artifactId>totp-parent-hangar</artifactId>
77
<packaging>pom</packaging>
8-
<version>1.7.1</version>
8+
<version>1.7.2-SNAPSHOT</version>
99
<properties>
1010
<!-- compiling -->
1111
<java.version>17</java.version>

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.1</version>
15+
<version>1.7.2-SNAPSHOT</version>
1616
</dependency>
1717
```
1818

1919
#### Gradle
2020

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

totp-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>dev.samstevens.totp</groupId>
88
<artifactId>totp-parent-hangar</artifactId>
9-
<version>1.7.1</version>
9+
<version>1.7.2-SNAPSHOT</version>
1010
</parent>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>

totp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>dev.samstevens.totp</groupId>
88
<artifactId>totp-parent-hangar</artifactId>
9-
<version>1.7.1</version>
9+
<version>1.7.2-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>totp-hangar</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.1";
4+
public static String VERSION = "1.7.2-SNAPSHOT";
55
}

0 commit comments

Comments
 (0)