housekeeping

This commit is contained in:
James Parker 2017-02-02 01:55:00 -05:00
parent ef22b131f1
commit d59344b78b
3 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 1.4.10
* Fixed `identifyForm` to properly return `FormMissing` for empty forms. [#1072](https://github.com/yesodweb/yesod/issues/1072)
## 1.4.9
* Added a `ToValue` instance for `Enctype` [#1296](https://github.com/yesodweb/yesod/pull/1296)

View File

@ -352,6 +352,7 @@ identifyForm identVal form = \fragment -> do
| otherwise = id
( res', w) <- eraseParams (form fragment')
-- Empty forms now properly return FormMissing. [#1072](https://github.com/yesodweb/yesod/issues/1072)
let res = if missing then FormMissing else res'
return ( res, w)

View File

@ -1,5 +1,5 @@
name: yesod-form
version: 1.4.9
version: 1.4.10
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>