Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finalize the 1.2.0 release; begin 1.2.1 snapshot and update README #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ The Duo Universal Client for Java is available from Duo Security on Maven. Incl
<dependency>
<groupId>com.duosecurity</groupId>
<artifactId>duo-universal-sdk</artifactId>
<version>1.1.3</version>
<version>1.2.0</version>
</dependency>
```
See https://mvnrepository.com/artifact/com.duosecurity/duo-universal-sdk/1.1.3 for more details.
See https://mvnrepository.com/artifact/com.duosecurity/duo-universal-sdk/1.2.0 for more details.

## TLS 1.2 and 1.3 Support

Expand Down
4 changes: 2 additions & 2 deletions duo-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>duo-example</artifactId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
<name>Duo Universal Java</name>
<url>https://github.com/duosecurity/duo_universal_java/</url>
<description>Duo Web SDK for two-factor authentication</description>
Expand Down Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>com.duosecurity</groupId>
<artifactId>duo-universal-sdk</artifactId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Expand Down
2 changes: 1 addition & 1 deletion duo-universal-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<artifactId>duo-universal-sdk</artifactId>
<groupId>com.duosecurity</groupId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
<name>Duo Universal Java</name>
<url>https://github.com/duosecurity/duo_universal_java/</url>
<description>Duo Web SDK for two-factor authentication</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Client {

private static final String USER_AGENT_LIB = "duo_universal_java";

private static final String USER_AGENT_VERSION = "1.2.0";
private static final String USER_AGENT_VERSION = "1.2.1-SNAPSHOT";

// **************************************************
// Fields
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.duosecurity</groupId>
<artifactId>duo-universal-java</artifactId>
<packaging>pom</packaging>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>

<name>Duo Universal Java</name>
<url>https://github.com/duosecurity/duo_universal_java/</url>
Expand Down
Loading