packages feed

pipes-text 0.0.0.4 → 0.0.0.5

raw patch · 5 files changed

+18/−18 lines, 5 files

Files

Pipes/Text.hs view
@@ -159,13 +159,17 @@     -- * Re-exports     -- $reexports+    , Decoding(..)+    , streamDecodeUtf8+    , decodeSomeUtf8+    , Codec(..)+    , TextException(..)     , module Data.ByteString     , module Data.Text     , module Data.Profunctor     , module Data.Word     , module Pipes.Parse     , module Pipes.Group-    , module Pipes.Text.Internal     ) where  import Control.Exception (throwIO, try)
Pipes/Text/Internal.hs view
@@ -1,15 +1,7 @@ module Pipes.Text.Internal-    ( Decoding(..)-    , streamDecodeUtf8-    , decodeSomeUtf8-    , Codec(..)-    , TextException(..)-    , utf8-    , utf16_le-    , utf16_be-    , utf32_le-    , utf32_be+    (module Pipes.Text.Internal.Codec+    , module Pipes.Text.Internal.Decoding     ) where -import Pipes.Text.Internal.Decoding import Pipes.Text.Internal.Codec+import Pipes.Text.Internal.Decoding
Pipes/Text/Internal/Codec.hs view
@@ -12,10 +12,7 @@   module Pipes.Text.Internal.Codec-    ( Decoding(..)-    , streamDecodeUtf8-    , decodeSomeUtf8-    , Codec(..)+    ( Codec(..)     , TextException(..)     , utf8     , utf16_le
changelog view
@@ -1,10 +1,17 @@- # Version 0.0.0.3+ # Version 0.0.0.5+ + * Rearranged internal modules ++ # Version 0.0.0.4+  * Altered bad haddock markup +  # Version 0.0.0.3    * Actually added changelog+   # Version 0.0.0.2 
pipes-text.cabal view
@@ -1,5 +1,5 @@ name:                pipes-text-version:             0.0.0.4+version:             0.0.0.5 synopsis:            Text pipes. description:         Many of the pipes and other operations defined here mirror those in                      the `pipes-bytestring` library. Folds like `length` and grouping