http-monad 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+5/−5 lines, 2 filesdep ~transformersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: transformers
API changes (from Hackage documentation)
Files
- http-monad.cabal +3/−3
- test/Infinity.hs +2/−2
http-monad.cabal view
@@ -1,5 +1,5 @@ Name: http-monad-Version: 0.1.0.1+Version: 0.1.0.2 Cabal-Version: >= 1.6 Build-type: Simple License: BSD3@@ -30,7 +30,7 @@ Source-Repository this type: darcs location: http://code.haskell.org/~thielema/http-monad/- tag: 0.1.0.1+ tag: 0.1.0.2 Flag splitBase description: Old, monolithic base@@ -59,7 +59,7 @@ Build-depends: HTTP >=4000 && <4001 Build-depends: network >=2.1 && <2.4, parsec >=2.1 && <3.2 Build-depends: bytestring >=0.9 && <0.10- Build-depends: transformers >=0.2 && <0.3+ Build-depends: transformers >=0.2 && <0.4 Build-depends: explicit-exception >=0.1.4 && <0.2 Build-depends: utility-ht >=0.0.4 && <0.1 Build-depends: lazyio >=0.0.2 && <0.1
test/Infinity.hs view
@@ -37,7 +37,7 @@ mainText :: IO () mainText =- HTTP.initServerLazy 1000 1080+ HTTP.initServerLazy 1000 8080 (const (return (HTTP.Response 200 (("Content-Type", "text/plain") : [])@@ -46,5 +46,5 @@ main :: IO () main =- HTTP.initServerLazy 1000 1080 (return . response)+ HTTP.initServerLazy 1000 8080 (return . response) >> return ()