aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.DS_Storebin12292 -> 0 bytes
-rw-r--r--.gitignore1
-rw-r--r--Pipes/Text.hs6
-rw-r--r--pipes-text.cabal2
4 files changed, 7 insertions, 2 deletions
diff --git a/.DS_Store b/.DS_Store
deleted file mode 100644
index a67b8b2..0000000
--- a/.DS_Store
+++ /dev/null
Binary files differ
diff --git a/.gitignore b/.gitignore
index 477a353..6675061 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
1dist 1dist
2cabal-dev 2cabal-dev
3.DS_Store
3*.o 4*.o
4*.hi 5*.hi
5*.chi 6*.chi
diff --git a/Pipes/Text.hs b/Pipes/Text.hs
index bbf200f..c0c0946 100644
--- a/Pipes/Text.hs
+++ b/Pipes/Text.hs
@@ -159,13 +159,17 @@ module Pipes.Text (
159 159
160 -- * Re-exports 160 -- * Re-exports
161 -- $reexports 161 -- $reexports
162 , Decoding(..)
163 , streamDecodeUtf8
164 , decodeSomeUtf8
165 , Codec(..)
166 , TextException(..)
162 , module Data.ByteString 167 , module Data.ByteString
163 , module Data.Text 168 , module Data.Text
164 , module Data.Profunctor 169 , module Data.Profunctor
165 , module Data.Word 170 , module Data.Word
166 , module Pipes.Parse 171 , module Pipes.Parse
167 , module Pipes.Group 172 , module Pipes.Group
168 , module Pipes.Text.Internal
169 ) where 173 ) where
170 174
171import Control.Exception (throwIO, try) 175import Control.Exception (throwIO, try)
diff --git a/pipes-text.cabal b/pipes-text.cabal
index c5b47d0..02cd1fc 100644
--- a/pipes-text.cabal
+++ b/pipes-text.cabal
@@ -1,5 +1,5 @@
1name: pipes-text 1name: pipes-text
2version: 0.0.0.4 2version: 0.0.0.5
3synopsis: Text pipes. 3synopsis: Text pipes.
4description: Many of the pipes and other operations defined here mirror those in 4description: Many of the pipes and other operations defined here mirror those in
5 the `pipes-bytestring` library. Folds like `length` and grouping 5 the `pipes-bytestring` library. Folds like `length` and grouping