digestive-functors 0.0.2.0 → 0.0.2.1
raw patch · 2 files changed
+4/−4 lines, 2 filesdep +mtldep −monads-fddep ~basePVP ok
version bump matches the API change (PVP)
Dependencies added: mtl
Dependencies removed: monads-fd
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
digestive-functors.cabal view
@@ -1,5 +1,5 @@ Name: digestive-functors-Version: 0.0.2.0+Version: 0.0.2.1 Synopsis: A general way to consume input using applicative functors Description: Digestive functors is a library to generate and process HTML forms. You can find an introduction here:@@ -13,7 +13,7 @@ Maintainer: jaspervdj@gmail.com Category: Web Build-type: Simple-Cabal-version: >=1.2+Cabal-version: >=1.6 Library@@ -28,7 +28,7 @@ Text.Digestive.Cli, Text.Digestive Build-depends: base >= 4 && < 5,- monads-fd >= 0.1,+ mtl >= 2.0.0.0 && < 3, containers >= 0.3, bytestring >= 0.9, text >= 0.10
src/Text/Digestive/Forms.hs view
@@ -21,7 +21,7 @@ import Text.Digestive.Result import Text.Digestive.Transform --- | Class which all backends should implement. @a@ is here the type that is+-- | Class which all backends should implement. @i@ is here the type that is -- used to represent a value uploaded by the client in the request -- class FormInput i f | i -> f where