Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/actions/maven-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.22.2
0.23.0
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ Add the dependency via Maven:
<dependency>
<groupId>com.auth0</groupId>
<artifactId>jwks-rsa</artifactId>
<version>0.22.2</version>
<version>0.23.0</version>
</dependency>
```

or Gradle:

```gradle
implementation 'com.auth0:jwks-rsa:0.22.2'
implementation 'com.auth0:jwks-rsa:0.23.0'
```

### Usage
Expand Down
Loading