]> git.immae.eu Git - github/fretlink/text-pipes.git/commitdiff
cabal file more descriptive
authormichaelt <what_is_it_to_do_anything@yahoo.com>
Wed, 5 Feb 2014 09:35:05 +0000 (04:35 -0500)
committermichaelt <what_is_it_to_do_anything@yahoo.com>
Wed, 5 Feb 2014 09:35:05 +0000 (04:35 -0500)
changelog
pipes-text.cabal

index 13fcb4e6755b108c9821e7d585763aa4ae456b77..631aed3a864851955755b2b8dd0286da3aa79346 100644 (file)
--- a/changelog
+++ b/changelog
@@ -1,7 +1,10 @@
- # Version 0.0.0.1
+ # Version 0.0.0.2
 
  * Omit `stdinLn` as likely to be dangerous through misunderstanding.
 
+
+ # Version 0.0.0.1
+
  * Rearrange order of 'Internal' materials.
 
 
index 08072781ca22399e0310f9e1fb8e386cec43f762..cb828a727084b95a863ace2eb38f7d758dda7316 100644 (file)
@@ -1,13 +1,17 @@
 name:                pipes-text
-version:             0.0.0.1
+version:             0.0.0.2
 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 
                      operations like `lines` simply  adjust for the differences between 
-                     `ByteString` and `Text` and `Word8` and `Char`. The distinctive feature
-                     of the library is the `Text/ByteString` encoding and decoding apparatus.
+                     `ByteString` and `Text` and `Word8` and `Char`. It is hoped that this
+                     homogeneity will aid in learning the terms and programming style associated
+                     with both of them.  
                      .
-                     To this core are added some simple functions akin to the `String` 
+                     The most distinctive addition of the library to that core is the 
+                     apparatus for encoding and decoding `Text` and `ByteString`.
+                     .
+                     Also defined are some simple functions akin to the `String` 
                      operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`.  
                      .
                      All of the `IO` operations defined here - e.g `readFile`, `stdout` etc.