conduit-extra 1.1.9.2 → 1.1.9.3
raw patch · 3 files changed
+7/−3 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 :: SrictNotUnpackedByteString -> SrictNotUnpackedSockAddr -> Message
+ Data.Conduit.Network.UDP: Message :: {-# UNPACK #-} ~ByteString -> ~SockAddr -> Message
- Data.Conduit.Network.UDP: [msgData] :: Message -> SrictNotUnpackedByteString
+ Data.Conduit.Network.UDP: [msgData] :: Message -> {-# UNPACK #-} ~ByteString
- Data.Conduit.Network.UDP: [msgSender] :: Message -> SrictNotUnpackedSockAddr
+ Data.Conduit.Network.UDP: [msgSender] :: Message -> ~SockAddr
Files
- ChangeLog.md +4/−0
- Data/Conduit/Binary.hs +2/−2
- conduit-extra.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.1.9.3++* Some typo fixes in docs+ ## 1.1.9 * detectUtf [#217](https://github.com/snoyberg/conduit/pull/217)
Data/Conduit/Binary.hs view
@@ -129,7 +129,7 @@ -- | An alternative to 'sourceHandle'. -- Instead of taking a pre-opened 'IO.Handle', it takes an action that opens -- a 'IO.Handle' (in read mode), so that it can open it only when needed--- and closed it as soon as possible.+-- and close it as soon as possible. -- -- Since 0.3.0 sourceIOHandle :: MonadResource m@@ -250,7 +250,7 @@ conduitHandle :: MonadIO m => IO.Handle -> Conduit S.ByteString m S.ByteString conduitHandle h = awaitForever $ \bs -> liftIO (S.hPut h bs) >> yield bs --- | Ensure that only up to the given number of bytes are consume by the inner+-- | Ensure that only up to the given number of bytes are consumed by the inner -- sink. Note that this does /not/ ensure that all of those bytes are in fact -- consumed. --
conduit-extra.cabal view
@@ -1,5 +1,5 @@ Name: conduit-extra-Version: 1.1.9.2+Version: 1.1.9.3 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.