packages feed

digestive-functors-happstack 0.1.0.2 → 0.1.1.0

raw patch · 2 files changed

+12/−10 lines, 2 filesdep ~bytestringdep ~digestive-functorsdep ~textPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: bytestring, digestive-functors, text, utf8-string

API changes (from Hackage documentation)

- Text.Digestive.Forms.Happstack: type HappstackForm m e v a = Form m [Input] e v a
+ Text.Digestive.Forms.Happstack: type HappstackForm m = Form m [Input]

Files

digestive-functors-happstack.cabal view
@@ -1,5 +1,5 @@ Name:                digestive-functors-happstack-Version:             0.1.0.2+Version:             0.1.1.0 Synopsis:            Happstack backend for the digestive-functors library Description:         This is a happstack backend for the digestive-functors     library.@@ -15,11 +15,13 @@   Library-  Hs-source-dirs:    src-  Exposed-modules:   Text.Digestive.Forms.Happstack-  Build-depends:     base >= 4 && < 5,-                     digestive-functors == 0.1.0.*,-                     happstack-server >= 6.0 && < 6.3,-                     utf8-string >= 0.3,-                     bytestring >= 0.9,-                     text+  Hs-source-dirs:  src+  Exposed-modules: Text.Digestive.Forms.Happstack++  Build-depends:+    base               >= 4    && < 5,+    bytestring         >= 0.9  && < 0.10,+    digestive-functors >= 0.1  && < 0.3,+    happstack-server   >= 6.0  && < 6.3,+    text               >= 0.11 && < 1.0,+    utf8-string        >= 0.3  && < 0.4
src/Text/Digestive/Forms/Happstack.hs view
@@ -40,7 +40,7 @@  -- | Simplification of the `Form` type, instantiated to Happstack ---type HappstackForm m e v a = Form m [Input] e v a+type HappstackForm m = Form m [Input]  -- | Environment that will fetch input from the parameters parsed by Happstack --