From be88da3acd2efa9a165ed3559d69a341547e700c Mon Sep 17 00:00:00 2001 From: Aaron McConnell Date: Thu, 18 Jan 2024 10:14:21 -0500 Subject: [PATCH] Point README to latest version and bump internal version to SNAPSHOT --- README.md | 6 +++--- duo-client/pom.xml | 2 +- duo-client/src/main/java/com/duosecurity/client/Http.java | 2 +- duo-example-admin/pom.xml | 6 +++--- pom.xml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9f37d15..1e05e58 100644 --- a/README.md +++ b/README.md @@ -57,18 +57,18 @@ The Java API Client project is available from Duo Security on Maven. Include th com.duosecurity duo-client - 0.6.0 + 0.6.1 ``` -See https://mvnrepository.com/artifact/com.duosecurity/duo-client/0.6.0 for more details. +See https://mvnrepository.com/artifact/com.duosecurity/duo-client/0.6.1 for more details. # Using the Example There is an example in /duo-example-admin Create an Admin API application in your Duo Admin Panel. To set the minimum permissions, under your API's 'Permissions', check the three boxes that start with "Grant read ...". ``` -$ java -jar duo-example-admin-0.6.0-jar-with-dependencies.jar -host -ikey -skey +$ java -jar duo-example-admin-0.6.1-jar-with-dependencies.jar -host -ikey -skey ``` If successful, the console will print the users and authentication attempts. diff --git a/duo-client/pom.xml b/duo-client/pom.xml index e886b81..bfc51d0 100644 --- a/duo-client/pom.xml +++ b/duo-client/pom.xml @@ -5,7 +5,7 @@ com.duosecurity duo-client - 0.6.1 + 0.6.2-SNAPSHOT Duo Security API client https://github.com/duosecurity/duo_client_java Two Factor Authentication API Client diff --git a/duo-client/src/main/java/com/duosecurity/client/Http.java b/duo-client/src/main/java/com/duosecurity/client/Http.java index dc6c931..1ab443b 100644 --- a/duo-client/src/main/java/com/duosecurity/client/Http.java +++ b/duo-client/src/main/java/com/duosecurity/client/Http.java @@ -32,7 +32,7 @@ public class Http { public static final int DEFAULT_TIMEOUT_SECS = 60; private static final int RATE_LIMIT_ERROR_CODE = 429; - public static final String UserAgentString = "Duo API Java/0.6.1"; + public static final String UserAgentString = "Duo API Java/0.6.2-SNAPSHOT"; private final String method; private final String host; diff --git a/duo-example-admin/pom.xml b/duo-example-admin/pom.xml index 6df2a3e..7348820 100644 --- a/duo-example-admin/pom.xml +++ b/duo-example-admin/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.duosecurity duo-example-admin - 0.6.1 + 0.6.2-SNAPSHOT jar Duo Admin API Example client @@ -16,14 +16,14 @@ com.duosecurity duo-client-all - 0.6.1 + 0.6.2-SNAPSHOT com.duosecurity duo-client - 0.6.1 + 0.6.2-SNAPSHOT org.json diff --git a/pom.xml b/pom.xml index 19dc401..522ba70 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.duosecurity duo-client-all - 0.6.1 + 0.6.2-SNAPSHOT pom Duo Security API client and examples