From 64453e4c6a67b73fe129a0debb63aa67ebf88c22 Mon Sep 17 00:00:00 2001 From: Joakim Antman Date: Thu, 3 Oct 2024 08:51:27 +0300 Subject: [PATCH] Prepare next iteration --- CHANGELOG.md | 12 ++++++++++++ lib/jwt/version.rb | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9bb82e9..d7a98361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,18 @@ Notable changes in the upcoming **version 3.0**: - The `sign` and `verify` static methods on all the algorithms (`::JWT::JWA`) will be removed. - Custom algorithms are expected to include the `JWT::JWA::SigningAlgorithm` module. +## [v2.9.4](https://github.com/jwt/ruby-jwt/tree/v2.9.4) (NEXT) + +[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.9.3...main) + +**Features:** + +- Your contribution here + +**Fixes and enhancements:** + +- Your contribution here + ## [v2.9.3](https://github.com/jwt/ruby-jwt/tree/v2.9.3) (2024-10-03) [Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.9.2...v2.9.3) diff --git a/lib/jwt/version.rb b/lib/jwt/version.rb index c7a39cc5..6d0e3df5 100644 --- a/lib/jwt/version.rb +++ b/lib/jwt/version.rb @@ -13,7 +13,7 @@ module VERSION # minor version MINOR = 9 # tiny version - TINY = 3 + TINY = 4 # alpha, beta, etc. tag PRE = nil