From 913e1e3b17e44789d4c98b0d38cd5d33d4abcdff Mon Sep 17 00:00:00 2001 From: Aaron McConnell Date: Wed, 2 Sep 2026 14:59:42 -0400 Subject: [PATCH] Start 0.9.1-SNAPSHOT development Bump version to 0.9.1-SNAPSHOT in the poms and Http user agent string following the 0.9.0 release. Update the README usage examples to the released 0.9.0 version (README always references a real release). Co-Authored-By: Claude Opus 4.8 --- README.md | 10 +++++----- duo-client/pom.xml | 2 +- .../src/main/java/com/duosecurity/client/Http.java | 2 +- duo-example-admin/pom.xml | 6 +++--- pom.xml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index d205aab..a033226 100644 --- a/README.md +++ b/README.md @@ -57,11 +57,11 @@ The Java API Client project is available from Duo Security on Maven. Include th com.duosecurity duo-client - 0.8.0 + 0.9.0 ``` -See https://central.sonatype.com/artifact/com.duosecurity/duo-client/0.8.0 for more details. +See https://central.sonatype.com/artifact/com.duosecurity/duo-client/0.9.0 for more details. ## Verifying releases @@ -71,11 +71,11 @@ The public keys are in [`KEYS`](KEYS) in this repository. ``` curl -O https://raw.githubusercontent.com/duosecurity/duo_client_java/master/KEYS gpg --import KEYS -gpg --verify duo-client-0.8.0.jar.asc duo-client-0.8.0.jar +gpg --verify duo-client-0.9.0.jar.asc duo-client-0.9.0.jar ``` The `.jar.asc` signature files are available alongside each artifact on Maven Central, -for example . +for example . | Versions | Key fingerprint | | --- | --- | @@ -92,7 +92,7 @@ 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.8.0-jar-with-dependencies.jar -host -ikey -skey +$ java -jar duo-example-admin-0.9.0-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 8bac2bc..9c2e50b 100644 --- a/duo-client/pom.xml +++ b/duo-client/pom.xml @@ -5,7 +5,7 @@ com.duosecurity duo-client - 0.9.0 + 0.9.1-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 1d353af..b09a710 100644 --- a/duo-client/src/main/java/com/duosecurity/client/Http.java +++ b/duo-client/src/main/java/com/duosecurity/client/Http.java @@ -35,7 +35,7 @@ public class Http { private static final int RATE_LIMIT_ERROR_CODE = 429; private static final String CA_BUNDLE_VERSION = "1.0"; - public static final String UserAgentString = "Duo API Java/0.9.0"; + public static final String UserAgentString = "Duo API Java/0.9.1-SNAPSHOT"; private final String method; private final String host; diff --git a/duo-example-admin/pom.xml b/duo-example-admin/pom.xml index 4b91d98..ca00a82 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.9.0 + 0.9.1-SNAPSHOT jar Duo Admin API Example client @@ -16,14 +16,14 @@ com.duosecurity duo-client-all - 0.9.0 + 0.9.1-SNAPSHOT com.duosecurity duo-client - 0.9.0 + 0.9.1-SNAPSHOT org.json diff --git a/pom.xml b/pom.xml index 8aa0001..49f9fa3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.duosecurity duo-client-all - 0.9.0 + 0.9.1-SNAPSHOT pom Duo Security API client and examples