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,7 +1,17 @@
# Changelog

## [v2.10.2](https://github.com/jwt/ruby-jwt/tree/v2.10.2) (2025-06-29)

[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.10.1...v2.10.2)

**Fixes and enhancements:**

- Avoid using the same digest across calls in JWT::JWA::Ecdsa and JWT::JWA::Rsa [#697](https://github.com/jwt/ruby-jwt/pull/697)

## [v2.10.1](https://github.com/jwt/ruby-jwt/tree/v2.10.1) (2024-12-26)

[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.10.0...v2.10.1)

**Fixes and enhancements:**

- Make version constants public again [#646](https://github.com/jwt/ruby-jwt/pull/646) ([@anakinj]
Expand Down
2 changes: 1 addition & 1 deletion lib/jwt/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def self.gem_version
module VERSION
MAJOR = 2
MINOR = 10
TINY = 1
TINY = 2
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
Expand Down