packages feed

conduit-extra 1.1.4.1 → 1.1.4.2

raw patch · 3 files changed

+7/−1 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Data.Conduit.Network.UDP: Message :: !ByteString -> !SockAddr -> Message
+ Data.Conduit.Network.UDP: Message :: SrictNotUnpackedByteString -> SrictNotUnpackedSockAddr -> Message
- Data.Conduit.Network.UDP: msgData :: Message -> !ByteString
+ Data.Conduit.Network.UDP: msgData :: Message -> SrictNotUnpackedByteString
- Data.Conduit.Network.UDP: msgSender :: Message -> !SockAddr
+ Data.Conduit.Network.UDP: msgSender :: Message -> SrictNotUnpackedSockAddr

Files

Data/Conduit/Binary.hs view
@@ -1,5 +1,8 @@ {-# LANGUAGE CPP, RankNTypes #-} -- | Functions for interacting with bytes.+--+-- For many purposes, it's recommended to use the conduit-combinators library,+-- which provides a more complete set of functions. module Data.Conduit.Binary     ( -- * Files and @Handle@s 
Data/Conduit/Text.hs view
@@ -6,6 +6,9 @@ -- Handle streams of text. -- -- Parts of this code were taken from enumerator and adapted for conduits.+--+-- For many purposes, it's recommended to use the conduit-combinators library,+-- which provides a more complete set of functions. module Data.Conduit.Text     ( 
conduit-extra.cabal view
@@ -1,5 +1,5 @@ Name:                conduit-extra-Version:             1.1.4.1+Version:             1.1.4.2 Synopsis:            Batteries included conduit: adapters for common libraries. Description:     The conduit package itself maintains relative small dependencies. The purpose of this package is to collect commonly used utility functions wrapping other library dependencies, without depending on heavier-weight dependencies. The basic idea is that this package should only depend on haskell-platform packages and conduit.