Skip to content

Commit 3526fcc

Browse files
authored
Release 4.2.0 (#626)
1 parent 49c5def commit 3526fcc

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## [4.2.0](https://github.com/auth0/java-jwt/tree/4.2.0) (2022-10-19)
4+
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.1.0...4.2.0)
5+
6+
**Changed**
7+
- Re-enable japicmp API diff checking [\#619](https://github.com/auth0/java-jwt/pull/619) ([jimmyjames](https://github.com/jimmyjames))
8+
- Update .shiprc to only update lib version in build.gradle [\#625](https://github.com/auth0/java-jwt/pull/625) ([jimmyjames](https://github.com/jimmyjames))
9+
- Optimise TokenUtils parsing [\#611](https://github.com/auth0/java-jwt/pull/611) ([noetro](https://github.com/noetro))
10+
- Update Circle Ship Orb configuration [\#616](https://github.com/auth0/java-jwt/pull/616) ([frederikprijck](https://github.com/frederikprijck))
11+
12+
**Fixed**
13+
- Update Claim#asString documentation [\#615](https://github.com/auth0/java-jwt/pull/615) ([jimmyjames](https://github.com/jimmyjames))
14+
315
## [4.1.0](https://github.com/auth0/java-jwt/tree/4.1.0) (2022-10-06)
416
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.0.0...4.1.0)
517

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This library is supported for Java 8, 11, and 17. For issues on non-LTS versions
3939
### Gradle
4040

4141
```gradle
42-
implementation 'com.auth0:java-jwt:4.1.0'
42+
implementation 'com.auth0:java-jwt:4.2.0'
4343
```
4444

4545
### Maven
@@ -48,7 +48,7 @@ implementation 'com.auth0:java-jwt:4.1.0'
4848
<dependency>
4949
<groupId>com.auth0</groupId>
5050
<artifactId>java-jwt</artifactId>
51-
<version>4.1.0</version>
51+
<version>4.2.0</version>
5252
</dependency>
5353
```
5454

lib/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
version = "4.1.0"
2+
version = "4.2.0"
33
}
44

55
plugins {

0 commit comments

Comments
 (0)