Skip to content
Merged
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [4.3.0](https://github.com/auth0/java-jwt/tree/4.3.0) (2023-02-10)
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.2.2...4.3.0)

**Changed**
- Improve JWT parse/decode performance [\#620](https://github.com/auth0/java-jwt/pull/620) ([noetro](https://github.com/noetro))

**Fixed**
- Fix for exp claim considered valid if equal to now [\#652](https://github.com/auth0/java-jwt/pull/652) ([jimmyjames](https://github.com/jimmyjames))
- Code cleanup [\#642](https://github.com/auth0/java-jwt/pull/642) ([CodeDead](https://github.com/CodeDead))

## [4.2.2](https://github.com/auth0/java-jwt/tree/4.2.2) (2023-01-11)
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.2.1...4.2.2)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ Add the dependency via Maven:
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>4.2.2</version>
<version>4.3.0</version>
</dependency>
```

or Gradle:

```gradle
implementation 'com.auth0:java-jwt:4.2.2'
implementation 'com.auth0:java-jwt:4.3.0'
```

### Create a JWT
Expand Down