Version bump

This commit is contained in:
Michael Snoyman 2015-04-26 18:37:33 +03:00
parent 9db6ef3e69
commit fa0fbb4569
3 changed files with 8 additions and 1 deletions

View File

@ -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)

View File

@ -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]

View File

@ -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