aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--changelog5
-rw-r--r--pipes-text.cabal12
2 files changed, 12 insertions, 5 deletions
diff --git a/changelog b/changelog
index 13fcb4e..631aed3 100644
--- a/changelog
+++ b/changelog
@@ -1,7 +1,10 @@
1 # Version 0.0.0.1 1 # Version 0.0.0.2
2 2
3 * Omit `stdinLn` as likely to be dangerous through misunderstanding. 3 * Omit `stdinLn` as likely to be dangerous through misunderstanding.
4 4
5
6 # Version 0.0.0.1
7
5 * Rearrange order of 'Internal' materials. 8 * Rearrange order of 'Internal' materials.
6 9
7 10
diff --git a/pipes-text.cabal b/pipes-text.cabal
index 0807278..cb828a7 100644
--- a/pipes-text.cabal
+++ b/pipes-text.cabal
@@ -1,13 +1,17 @@
1name: pipes-text 1name: pipes-text
2version: 0.0.0.1 2version: 0.0.0.2
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
6 operations like `lines` simply adjust for the differences between 6 operations like `lines` simply adjust for the differences between
7 `ByteString` and `Text` and `Word8` and `Char`. The distinctive feature 7 `ByteString` and `Text` and `Word8` and `Char`. It is hoped that this
8 of the library is the `Text/ByteString` encoding and decoding apparatus. 8 homogeneity will aid in learning the terms and programming style associated
9 with both of them.
9 . 10 .
10 To this core are added some simple functions akin to the `String` 11 The most distinctive addition of the library to that core is the
12 apparatus for encoding and decoding `Text` and `ByteString`.
13 .
14 Also defined are some simple functions akin to the `String`
11 operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`. 15 operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`.
12 . 16 .
13 All of the `IO` operations defined here - e.g `readFile`, `stdout` etc. 17 All of the `IO` operations defined here - e.g `readFile`, `stdout` etc.