yesod-form 1.6.3 → 1.6.4
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- ChangeLog.md +4/−0
- Yesod/Form/Types.hs +1/−1
- yesod-form.cabal +1/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # ChangeLog for yesod-form +## 1.6.4++* Make FormResult an instance of Eq+ ## 1.6.3 * make sure a select field does not lose the selected value even if a validation on the
Yesod/Form/Types.hs view
@@ -50,7 +50,7 @@ data FormResult a = FormMissing | FormFailure [Text] | FormSuccess a- deriving Show+ deriving (Show, Eq) instance Functor FormResult where fmap _ FormMissing = FormMissing fmap _ (FormFailure errs) = FormFailure errs
yesod-form.cabal view
@@ -1,5 +1,5 @@ name: yesod-form-version: 1.6.3+version: 1.6.4 license: MIT license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>