diff --git a/CHANGELOG.md b/CHANGELOG.md index 29d2fdb..2c02913 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -## 0.3.0 (UNDER DEVELOPMENT) +## 0.2.1 (2023-07-09) -* Add a `MartenAuth#update_session_auth_hash` method to refresh the session auth hash after changing a user's password +* Add missing `MartenAuth#update_session_auth_hash` method to refresh the session auth hash after changing a user's password ## 0.2.0 (2023-06-18) diff --git a/shard.yml b/shard.yml index 56c7a10..d0d9e5b 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: marten_auth -version: 0.2.0 +version: 0.2.1 authors: - Morgan Aubert diff --git a/src/marten_auth.cr b/src/marten_auth.cr index a7565c1..d0ec122 100644 --- a/src/marten_auth.cr +++ b/src/marten_auth.cr @@ -3,7 +3,7 @@ require "crypto/bcrypt/password" require "./marten_auth/app" module MartenAuth - VERSION = "0.2.0" + VERSION = "0.2.1" @@password_reset_token_encryptor : Marten::Core::Encryptor?