diff --git a/yesod-auth/ChangeLog.md b/yesod-auth/ChangeLog.md index 8f35bbea..66b414c6 100644 --- a/yesod-auth/ChangeLog.md +++ b/yesod-auth/ChangeLog.md @@ -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) diff --git a/yesod-auth/Yesod/Auth/Email.hs b/yesod-auth/Yesod/Auth/Email.hs index 61e76cb5..616414b5 100644 --- a/yesod-auth/Yesod/Auth/Email.hs +++ b/yesod-auth/Yesod/Auth/Email.hs @@ -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 diff --git a/yesod-auth/yesod-auth.cabal b/yesod-auth/yesod-auth.cabal index 6650831c..120950cc 100644 --- a/yesod-auth/yesod-auth.cabal +++ b/yesod-auth/yesod-auth.cabal @@ -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