diff options
author | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 04:27:09 -0500 |
---|---|---|
committer | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 04:27:09 -0500 |
commit | 11777d08714298b5f56c9d49460d094caf49bcba (patch) | |
tree | 8eb3b059ca66f9e577b41b2df5984cb8248ec386 | |
parent | 167f880504e05b19d3487c7ba701afa9633a2f41 (diff) | |
download | text-pipes-11777d08714298b5f56c9d49460d094caf49bcba.tar.gz text-pipes-11777d08714298b5f56c9d49460d094caf49bcba.tar.zst text-pipes-11777d08714298b5f56c9d49460d094caf49bcba.zip |
changelog and cabal file arrangement
-rw-r--r-- | changelog | 7 | ||||
-rw-r--r-- | pipes-text.cabal | 12 |
2 files changed, 14 insertions, 5 deletions
diff --git a/changelog b/changelog new file mode 100644 index 0000000..13fcb4e --- /dev/null +++ b/changelog | |||
@@ -0,0 +1,7 @@ | |||
1 | # Version 0.0.0.1 | ||
2 | |||
3 | * Omit `stdinLn` as likely to be dangerous through misunderstanding. | ||
4 | |||
5 | * Rearrange order of 'Internal' materials. | ||
6 | |||
7 | |||
diff --git a/pipes-text.cabal b/pipes-text.cabal index 9af2a09..0807278 100644 --- a/pipes-text.cabal +++ b/pipes-text.cabal | |||
@@ -1,5 +1,5 @@ | |||
1 | name: pipes-text | 1 | name: pipes-text |
2 | version: 0.0.0.0 | 2 | version: 0.0.0.1 |
3 | synopsis: Text pipes. | 3 | synopsis: Text pipes. |
4 | description: Many of the pipes and other operations defined here mirror those in | 4 | description: 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 |
@@ -19,17 +19,19 @@ description: Many of the pipes and other operations defined here mirror | |||
19 | 19 | ||
20 | homepage: https://github.com/michaelt/text-pipes | 20 | homepage: https://github.com/michaelt/text-pipes |
21 | bug-reports: https://github.com/michaelt/text-pipes/issues | 21 | bug-reports: https://github.com/michaelt/text-pipes/issues |
22 | |||
23 | license: BSD3 | 22 | license: BSD3 |
24 | license-file: LICENSE | 23 | license-file: LICENSE |
25 | author: Michael Thompson | 24 | author: Michael Thompson |
26 | maintainer: what_is_it_to_do_anything@yahoo.com | 25 | maintainer: what_is_it_to_do_anything@yahoo.com |
27 | category: Text, Pipes | 26 | category: Text, Pipes |
28 | |||
29 | build-type: Simple | 27 | build-type: Simple |
30 | cabal-version: >=1.10 | 28 | cabal-version: >=1.10 |
31 | extra-source-files: README.md | 29 | |
32 | include/*.h | 30 | extra-source-files: README.md include/*.h |
31 | source-repository head | ||
32 | type: git | ||
33 | location: https://github.com/michaelt/text-pipes | ||
34 | |||
33 | 35 | ||
34 | library | 36 | library |
35 | c-sources: cbits/cbits.c | 37 | c-sources: cbits/cbits.c |