packages feed

hack-middleware-jsonp 0.0.1 → 0.0.2

raw patch · 2 files changed

+6/−4 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

Hack/Middleware/Jsonp.hs view
@@ -46,7 +46,6 @@                         }     res <- app env'     let ctype = fromMaybe "" $ lookup "Content-Type" $ headers res-    putStrLn $ "callback: " ++ show callback ++ ", ctype: " ++ show ctype ++ ", accept: " ++ accept     case callback of         Nothing -> return res         Just c ->
hack-middleware-jsonp.cabal view
@@ -1,5 +1,5 @@ name:            hack-middleware-jsonp-version:         0.0.1+version:         0.0.2 license:         BSD3 license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>@@ -12,7 +12,10 @@ homepage:        http://github.com/snoyberg/hack-middleware-jsonp/tree/master  library-    build-depends:   base >= 3, bytestring >= 0.9.1.4, bytestring-class,-                     web-encodings, hack >= 2009.5.19+    build-depends:   base >= 3 && < 5,+                     bytestring >= 0.9.1.4,+                     bytestring-class,+                     web-encodings,+                     hack >= 2009.5.19     exposed-modules: Hack.Middleware.Jsonp     ghc-options:     -Wall