diff --git a/CHANGELOG.md b/CHANGELOG.md index 71dc96b..1946089 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] +## [1.0.2] - 2022-04-21 + * After setting `authorize_by_jwt_subject_type` and `authorize_by_jwt_scopes` in a controller, any classes inheriting from your controller will also get a copy of those attributes. You can override this behaviour by calling the methods again in the child @@ -48,7 +50,9 @@ 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/v1.0.0...HEAD +[Unreleased]: https://github.com/zaikio/zaikio-directory-models/compare/v1.0.2...HEAD +[1.0.1]: https://github.com/zaikio/zaikio-directory-models/compare/v1.0.1...v1.0.2 +[1.0.1]: https://github.com/zaikio/zaikio-directory-models/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/zaikio/zaikio-directory-models/compare/v0.5.1...v1.0.0 [0.5.1]: https://github.com/zaikio/zaikio-directory-models/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/zaikio/zaikio-directory-models/compare/v0.4.4...v0.5.0 diff --git a/Gemfile.lock b/Gemfile.lock index 9a4dca7..a702dd7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - zaikio-jwt_auth (1.0.1) + zaikio-jwt_auth (1.0.2) 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 ed96047..55fab22 100644 --- a/lib/zaikio/jwt_auth/version.rb +++ b/lib/zaikio/jwt_auth/version.rb @@ -1,5 +1,5 @@ module Zaikio module JWTAuth - VERSION = "1.0.1".freeze + VERSION = "1.0.2".freeze end end