packages feed

http-pony-transformer-http 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+12/−12 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

http-pony-transformer-http.cabal view
@@ -1,15 +1,10 @@--- Initial http-pony-transformer-http.cabal generated by cabal init.  For --- further documentation, see http://haskell.org/cabal/users-guide/- name:                http-pony-transformer-http-version:             0.1.0.0--- synopsis:            -description:         Transform to a basic HTTP interface+version:             0.1.0.1+synopsis:            Transform raw TCP stream to a basic HTTP type license:             BSD3 license-file:        LICENSE author:              Jinjing Wang maintainer:          nfjinjing@gmail.com--- copyright:            category:            Network build-type:          Simple extra-source-files:  ChangeLog.md@@ -20,8 +15,13 @@                      , Network.HTTP.Pony.Transformer.HTTP.Parser                      , Network.HTTP.Pony.Transformer.HTTP.Type                      , Network.HTTP.Pony.Transformer.HTTP.Builder-  -- other-modules:       -  -- other-extensions:    OverloadedStrings-  build-depends:       base >=4.9 && <4.10, bytestring >=0.10, pipes >=4.1, transformers >=0.5, attoparsec >=0.13, pipes-attoparsec >=0.5++  build-depends:       base >=4.8 && < 5+                     , bytestring >=0.10+                     , pipes >=4.1+                     , transformers >=0.5+                     , attoparsec >=0.13+                     , pipes-attoparsec >=0.5+   hs-source-dirs:      src   default-language:    Haskell2010
src/Network/HTTP/Pony/Transformer/HTTP/Builder.hs view
@@ -14,7 +14,7 @@   yield key   yield ": "   yield value-  yield "\n"+  yield "\r\n"   message :: Monad m => Request' ByteString m r -> Producer ByteString m r@@ -24,5 +24,5 @@    (each ~> header) headers -  yield "\n"+  yield "\r\n"   body