diff --git a/yesod-auth/ChangeLog.md b/yesod-auth/ChangeLog.md index c60011741..2d95f96d3 100644 --- a/yesod-auth/ChangeLog.md +++ b/yesod-auth/ChangeLog.md @@ -1,3 +1,7 @@ +## 1.4.5 + +* Adds export of email verify route [#980](https://github.com/yesodweb/yesod/pull/980) + ## 1.4.4 * Add AuthenticationResult and authenticate function [#959](https://github.com/yesodweb/yesod/pull/959) diff --git a/yesod-auth/Yesod/Auth/Email.hs b/yesod-auth/Yesod/Auth/Email.hs index 5b93abd3e..0a731049c 100644 --- a/yesod-auth/Yesod/Auth/Email.hs +++ b/yesod-auth/Yesod/Auth/Email.hs @@ -75,6 +75,9 @@ registerR = PluginR "email" ["register"] forgotPasswordR = PluginR "email" ["forgot-password"] setpassR = PluginR "email" ["set-password"] +-- | +-- +-- Since 1.4.5 verifyR :: Text -> Text -> AuthRoute -- FIXME verifyR eid verkey = PluginR "email" ["verify", eid, verkey] diff --git a/yesod-auth/yesod-auth.cabal b/yesod-auth/yesod-auth.cabal index b681df923..bae4db4ff 100644 --- a/yesod-auth/yesod-auth.cabal +++ b/yesod-auth/yesod-auth.cabal @@ -1,5 +1,5 @@ name: yesod-auth -version: 1.4.4 +version: 1.4.5 license: MIT license-file: LICENSE author: Michael Snoyman, Patrick Brisbin