Skip to content

Commit

Permalink
Prepare 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinj committed Dec 25, 2024
1 parent 3f38be0 commit d09d63b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# Changelog

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

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

**Features:**

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

**Fixes and enhancements:**

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

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

Expand Down
4 changes: 2 additions & 2 deletions lib/jwt/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def self.gem_version
# @api private
module VERSION
MAJOR = 2
MINOR = 9
TINY = 4
MINOR = 10
TINY = 0
PRE = nil

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

0 comments on commit d09d63b

Please sign in to comment.