Skip to content

Commit

Permalink
Merge pull request #613 from auth0/release/4.1.0
Browse files Browse the repository at this point in the history
Release 4.1.0
  • Loading branch information
jimmyjames authored Oct 10, 2022
2 parents 37c262d + d2bf8d3 commit 6621b50
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Change Log

## [4.1.0](https://github.com/auth0/java-jwt/tree/4.1.0) (2022-10-06)
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.0.0...4.1.0)

**⚠️ BREAKING CHANGES**
- Make JWT constants final values [\#604](https://github.com/auth0/java-jwt/pull/604) ([poovamraj](https://github.com/poovamraj))

**Added**
- Add integration with our Shipping orb [\#612](https://github.com/auth0/java-jwt/pull/612) ([frederikprijck](https://github.com/frederikprijck))
- Add Ship CLI support [\#609](https://github.com/auth0/java-jwt/pull/609) ([jimmyjames](https://github.com/jimmyjames))
- Provide straightforward example for JWKS [\#600](https://github.com/auth0/java-jwt/pull/600) ([poovamraj](https://github.com/poovamraj))

**Changed**
- Update to gradle 6.9.2 [\#608](https://github.com/auth0/java-jwt/pull/608) ([jimmyjames](https://github.com/jimmyjames))
- Update OSS plugin to latest [\#607](https://github.com/auth0/java-jwt/pull/607) ([jimmyjames](https://github.com/jimmyjames))
- [SDK-3466] Upgrade Codecov [\#595](https://github.com/auth0/java-jwt/pull/595) ([evansims](https://github.com/evansims))
- Update README.md [\#590](https://github.com/auth0/java-jwt/pull/590) ([poovamraj](https://github.com/poovamraj))

**Fixed**
- Check for null token before splitting [\#606](https://github.com/auth0/java-jwt/pull/606) ([jimmyjames](https://github.com/jimmyjames))
- [SDK-3816] Update docs for verification thread-safety [\#605](https://github.com/auth0/java-jwt/pull/605) ([jimmyjames](https://github.com/jimmyjames))

## [4.0.0](https://github.com/auth0/java-jwt/tree/4.0.0) (2022-06-24)
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.19.2...4.0.0)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This library is supported for Java 8, 11, and 17. For issues on non-LTS versions
### Gradle

```gradle
implementation 'com.auth0:java-jwt:4.0.0'
implementation 'com.auth0:java-jwt:4.1.0'
```

### Maven
Expand All @@ -48,7 +48,7 @@ implementation 'com.auth0:java-jwt:4.0.0'
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
version = "4.0.0"
version = "4.1.0"
}

plugins {
Expand Down

0 comments on commit 6621b50

Please sign in to comment.