We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 662bad8 commit fbfeee5Copy full SHA for fbfeee5
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 0.2.0 (2023-06-18)
4
+
5
+* Ensure that the `email` field is marked as `unique: true` in the `User` abstract model
6
7
## 0.1.1 (2023-02-19)
8
9
* Ensure `MartenAuth::User#check_password` returns `false` in case the password is not a correctly encoded value
shard.yml
@@ -1,5 +1,5 @@
name: marten_auth
-version: 0.1.1
+version: 0.2.0
authors:
- Morgan Aubert <me@morganaubert.name>
src/marten_auth.cr
@@ -3,7 +3,7 @@ require "crypto/bcrypt/password"
require "./marten_auth/app"
module MartenAuth
- VERSION = "0.1.1"
+ VERSION = "0.2.0"
@@password_reset_token_encryptor : Marten::Core::Encryptor?
0 commit comments