Skip to content

Commit

Permalink
prepare 1.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
samdjstevens committed Nov 5, 2020
1 parent fd3491f commit 6a04769
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To add this library to your java project using Maven, add the following dependen
<dependency>
<groupId>dev.samstevens.totp</groupId>
<artifactId>totp</artifactId>
<version>1.7</version>
<version>1.7.1</version>
</dependency>
```

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

```
dependencies {
compile 'dev.samstevens.totp:totp:1.7'
compile 'dev.samstevens.totp:totp:1.7.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>dev.samstevens.totp</groupId>
<artifactId>totp-parent</artifactId>
<packaging>pom</packaging>
<version>1.7</version>
<version>1.7.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
Expand All @@ -26,7 +26,7 @@

<scm>
<developerConnection>scm:git:git@github.com:samdjstevens/java-totp.git</developerConnection>
<tag>totp-1.7</tag>
<tag>totp-1.7.1</tag>
<url>https://github.com/samdjstevens/java-totp</url>
</scm>

Expand Down
4 changes: 2 additions & 2 deletions totp-spring-boot-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ To get started using the library in a Spring Boot project, add the `totp-spring-
<dependency>
<groupId>dev.samstevens.totp</groupId>
<artifactId>totp-spring-boot-starter</artifactId>
<version>1.7</version>
<version>1.7.1</version>
</dependency>
```

#### Gradle

```
dependencies {
compile 'dev.samstevens.totp:totp-spring-boot-starter:1.7'
compile 'dev.samstevens.totp:totp-spring-boot-starter:1.7.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions totp-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>dev.samstevens.totp</groupId>
<artifactId>totp-parent</artifactId>
<version>1.7</version>
<version>1.7.1</version>
</parent>

<name>${project.groupId}:${project.artifactId}</name>
Expand All @@ -18,7 +18,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>totp</artifactId>
<version>1.7</version>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion totp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>dev.samstevens.totp</groupId>
<artifactId>totp-parent</artifactId>
<version>1.7</version>
<version>1.7.1</version>
</parent>

<artifactId>totp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion totp/src/main/java/dev/samstevens/totp/TotpInfo.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package dev.samstevens.totp;

public class TotpInfo {
public static String VERSION = "1.7";
public static String VERSION = "1.7.1";
}

0 comments on commit 6a04769

Please sign in to comment.