Correct the version bump (previous unreleased changes)
This commit is contained in:
parent
e125795de3
commit
71d951c09b
@ -1,5 +1,8 @@
|
||||
## 1.6.5
|
||||
# ChangeLog for yesod-auth
|
||||
|
||||
## 1.6.4
|
||||
|
||||
* Make `registerHelper` configurable [#1524](https://github.com/yesodweb/yesod/issues/1524)
|
||||
* Email: Immediately register with a password [#1389](https://github.com/yesodweb/yesod/issues/1389)
|
||||
To configure this new functionality:
|
||||
1. Define `addUnverifiedWithPass`, e.g:
|
||||
@ -14,10 +17,6 @@ To configure this new functionality:
|
||||
```
|
||||
2. Add a `password` field to your client forms.
|
||||
|
||||
## 1.6.4
|
||||
|
||||
* Make `registerHelper` configurable [#1524](https://github.com/yesodweb/yesod/issues/1524)
|
||||
|
||||
## 1.6.3
|
||||
|
||||
* Generalize GoogleEmail2.getPerson [#1501](https://github.com/yesodweb/yesod/pull/1501)
|
||||
|
||||
@ -199,7 +199,7 @@ class ( YesodAuth site
|
||||
-- the default implementation is just `addUnverified`, which ignores the password
|
||||
-- you may override this to save the salted password to your database
|
||||
--
|
||||
-- @since 1.6.5
|
||||
-- @since 1.6.4
|
||||
addUnverifiedWithPass :: Email -> VerKey -> SaltedPass -> AuthHandler site (AuthEmailId site)
|
||||
addUnverifiedWithPass email verkey _ = addUnverified email verkey
|
||||
|
||||
@ -279,7 +279,7 @@ class ( YesodAuth site
|
||||
|
||||
-- | Route to send user to after verification with a password
|
||||
--
|
||||
-- @since 1.6.5
|
||||
-- @since 1.6.4
|
||||
afterVerificationWithPass :: site -> Route site
|
||||
afterVerificationWithPass = afterPasswordRoute
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name: yesod-auth
|
||||
version: 1.6.5
|
||||
version: 1.6.4
|
||||
license: MIT
|
||||
license-file: LICENSE
|
||||
author: Michael Snoyman, Patrick Brisbin
|
||||
|
||||
Loading…
Reference in New Issue
Block a user