Skip to content

Commit d09d63b

Browse files
committed
Prepare 2.10.0
1 parent 3f38be0 commit d09d63b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# Changelog
22

3-
## [v2.9.4](https://github.com/jwt/ruby-jwt/tree/v2.9.4) (NEXT)
3+
## [v2.10.0](https://github.com/jwt/ruby-jwt/tree/v2.10.0) (2024-12-25)
44

5-
[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.9.3...main)
5+
[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.9.3...v2.10.0)
66

77
**Features:**
88

99
- JWT::Token and JWT::EncodedToken for signing and verifying tokens [#621](https://github.com/jwt/ruby-jwt/pull/621) ([@anakinj](https://github.com/anakinj))
1010
- Detached payload support for JWT::Token and JWT::EncodedToken [#630](https://github.com/jwt/ruby-jwt/pull/630) ([@anakinj](https://github.com/anakinj))
1111
- Skip decoding payload if b64 header is present and false [#631](https://github.com/jwt/ruby-jwt/pull/631) ([@anakinj](https://github.com/anakinj))
1212
- Remove a few custom Rubocop configs [#638](https://github.com/jwt/ruby-jwt/pull/638) ([@anakinj](https://github.com/anakinj))
13-
- Your contribution here
1413

1514
**Fixes and enhancements:**
1615

@@ -19,7 +18,6 @@
1918
- Use correct methods when raising error during signing/verification with EdDSA [#633](https://github.com/jwt/ruby-jwt/pull/633)
2019
- Fix JWT::EncodedToken behavior with empty string as token [#640](https://github.com/jwt/ruby-jwt/pull/640) ([@ragalie](https://github.com/ragalie))
2120
- Deprecation warnings for rbnacl backed functionality [#641](https://github.com/jwt/ruby-jwt/pull/641) ([@anakinj](https://github.com/anakinj))
22-
- Your contribution here
2321

2422
## [v2.9.3](https://github.com/jwt/ruby-jwt/tree/v2.9.3) (2024-10-03)
2523

lib/jwt/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def self.gem_version
1515
# @api private
1616
module VERSION
1717
MAJOR = 2
18-
MINOR = 9
19-
TINY = 4
18+
MINOR = 10
19+
TINY = 0
2020
PRE = nil
2121

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

0 commit comments

Comments
 (0)