From 6a1d56cd86521388d014b0efefad630df37c4c18 Mon Sep 17 00:00:00 2001 From: tanya732 Date: Mon, 11 Aug 2025 17:52:21 +0530 Subject: [PATCH 1/2] Release 0.23.0 --- .version | 2 +- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.version b/.version index 934e07c..2ba6141 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.22.2 \ No newline at end of file +0.23.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 253de2c..2da3f69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [0.23.0](https://github.com/auth0/jwks-rsa-java/tree/0.23.0) (2025-08-11) +[Full Changelog](https://github.com/auth0/jwks-rsa-java/compare/0.22.2...0.23.0) + +**Added** +- Feat: Added Cache Implementation [\#221](https://github.com/auth0/jwks-rsa-java/pull/221) ([tanya732](https://github.com/tanya732)) + ## [0.22.2](https://github.com/auth0/jwks-rsa-java/tree/0.22.2) (2025-06-17) [Full Changelog](https://github.com/auth0/jwks-rsa-java/compare/0.22.1...0.22.2) diff --git a/README.md b/README.md index b8e352d..d4b416f 100644 --- a/README.md +++ b/README.md @@ -31,14 +31,14 @@ Add the dependency via Maven: com.auth0 jwks-rsa - 0.22.2 + 0.23.0 ``` or Gradle: ```gradle -implementation 'com.auth0:jwks-rsa:0.22.2' +implementation 'com.auth0:jwks-rsa:0.23.0' ``` ### Usage From ef96558baadb8c17e44d72c787b1781c2d3300f8 Mon Sep 17 00:00:00 2001 From: tanya732 Date: Mon, 11 Aug 2025 17:54:28 +0530 Subject: [PATCH 2/2] Added closeAndReleaseSonatypeStagingRepository command --- .github/actions/maven-publish/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/maven-publish/action.yml b/.github/actions/maven-publish/action.yml index 9386538..2cf6926 100644 --- a/.github/actions/maven-publish/action.yml +++ b/.github/actions/maven-publish/action.yml @@ -35,7 +35,7 @@ runs: - name: Publish Java Packages to Maven shell: bash - run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository --stacktrace + run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository -PisSnapshot=false --stacktrace env: JAVA_HOME: ${{ env.JAVA_HOME }} MAVEN_USERNAME: ${{ inputs.ossr-username }}