packages feed

pipes-wai 3.0.0 → 3.0.1

raw patch · 2 files changed

+5/−4 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Pipes.Wai: Chunk :: a -> Flush a
+ Pipes.Wai: Flush :: Flush a
+ Pipes.Wai: data Flush a

Files

Pipes/Wai.hs view
@@ -1,7 +1,8 @@ -- | A light-weight wrapper around @Network.Wai@ to provide easy conduit support. module Pipes.Wai-    ( -- * Request body-      producerRequestBody+    ( Flush(..)+      -- * Request body+    , producerRequestBody       -- * Response body     , responseProducer     , responseRawProducer@@ -52,7 +53,7 @@     Chunk b -> lift $ send b     Flush -> lift $ flush --- | Create a raw response using a @Source@ and @Sink@ to represent the input+-- | Create a raw response using a @Producer@ and @Consumer@ to represent the input -- and output, respectively. -- -- Since 3.0.0
pipes-wai.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                pipes-wai-version:             3.0.0+version:             3.0.1 synopsis:            A port of wai-conduit for the pipes ecosystem -- description:          homepage:            http://github.com/brewtown/pipes-wai