diff --git a/CHANGELOG.md b/CHANGELOG.md index 997ad72..0a18695 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.0] - 2021-04-23 + * **BREAKING** When updating the `DirectoryCache` (either using `invalidate: true` or when the cache expires), it will no longer retry & sleep, blocking the main thread. Instead, it enqueues a background job to attempt the update (and will re-queue again, if @@ -37,7 +39,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/v0.5.1...HEAD +[Unreleased]: https://github.com/zaikio/zaikio-directory-models/compare/v1.0.0...HEAD +[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 [0.4.4]: https://github.com/zaikio/zaikio-directory-models/compare/v0.4.3...v0.4.4 diff --git a/Gemfile.lock b/Gemfile.lock index 61249f8..c08d9ec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - zaikio-jwt_auth (0.5.1) + zaikio-jwt_auth (1.0.0) jwt (>= 2.2.1) oj (>= 3.0.0) railties (>= 5.0.0) diff --git a/lib/zaikio/jwt_auth/version.rb b/lib/zaikio/jwt_auth/version.rb index 000bc5d..3053469 100644 --- a/lib/zaikio/jwt_auth/version.rb +++ b/lib/zaikio/jwt_auth/version.rb @@ -1,5 +1,5 @@ module Zaikio module JWTAuth - VERSION = "0.5.1".freeze + VERSION = "1.0.0".freeze end end