A bit more version bumping

This commit is contained in:
Michael Snoyman 2015-03-24 08:54:09 +02:00
parent cb27424083
commit e3e5cb80eb
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
## 1.4.4
* Add AuthenticationResult and authenticate function [#959](https://github.com/yesodweb/yesod/pull/959)
## 1.4.3
* Added means to fetch user's Google profile [#936](https://github.com/yesodweb/yesod/pull/936)

View File

@ -81,6 +81,8 @@ type Method = Text
type Piece = Text
-- | The result of an authentication based on credentials
--
-- Since 1.4.4
data AuthenticationResult master
= Authenticated (AuthId master) -- ^ Authenticated successfully
| UserError AuthMessage -- ^ Invalid credentials provided by user