diff --git a/CHANGELOG.md b/CHANGELOG.md index 50a7fb4..7fd7486 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.6.0] - 2023-06-05 + * Support on behalf access tokens when `authorize_by_jwt_subject_type "Person"` ## [2.5.0] - 2023-05-11 @@ -100,7 +102,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Add a changelog * Setup automated gem publishing -[Unreleased]: https://github.com/zaikio/zaikio-directory-models/compare/v2.5.0...HEAD +[Unreleased]: https://github.com/zaikio/zaikio-directory-models/compare/v2.6.0...HEAD +[2.6.0]: https://github.com/zaikio/zaikio-directory-models/compare/v2.5.0...v2.6.0 [2.5.0]: https://github.com/zaikio/zaikio-directory-models/compare/v2.4.1...v2.5.0 [2.4.1]: https://github.com/zaikio/zaikio-directory-models/compare/v2.4.0...v2.4.1 [2.4.0]: https://github.com/zaikio/zaikio-directory-models/compare/v2.3.0...v2.4.0 diff --git a/Gemfile.lock b/Gemfile.lock index bcee6a5..13230ac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - zaikio-jwt_auth (2.5.0) + zaikio-jwt_auth (2.6.0) activejob jwt (>= 2.2.1) oj (>= 3.0.0) diff --git a/lib/zaikio/jwt_auth/version.rb b/lib/zaikio/jwt_auth/version.rb index 97b0816..439ec3d 100644 --- a/lib/zaikio/jwt_auth/version.rb +++ b/lib/zaikio/jwt_auth/version.rb @@ -1,5 +1,5 @@ module Zaikio module JWTAuth - VERSION = "2.5.0".freeze + VERSION = "2.6.0".freeze end end