conduit-extra 1.1.5 → 1.1.5.1
raw patch · 2 files changed
+6/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Conduit/Text.hs +5/−3
- conduit-extra.cabal +1/−1
Data/Conduit/Text.hs view
@@ -73,9 +73,11 @@ | NewCodec T.Text (T.Text -> B.ByteString) (B.ByteString -> DecodeResult) instance Show Codec where- showsPrec d c = showParen (d > 10) $- showString "Codec " . shows (codecName c)-+ showsPrec d c = + let (cnst, name) = case c of+ Codec t _ _ -> ("Codec ", t)+ NewCodec t _ _ -> ("NewCodec ", t)+ in showParen (d > 10) $ showString cnst . shows name
conduit-extra.cabal view
@@ -1,5 +1,5 @@ Name: conduit-extra-Version: 1.1.5+Version: 1.1.5.1 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.