Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
raehik committed Apr 29, 2021
1 parent adb5a86 commit 88db585
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## 0.3.0.0 (2021-03-03)
* `Reprinting m` is now `Reprinting i m`, where `i` is the input type, which
must be "`String`-like" (containers holding some "list" of `Char`s).
Previously, `i` was limited to `Text`. By default, `ByteString`, `Text` and
`String` are supported.
* Add an example module taking prompts from the 2017 paper, and rewrite the
tests to use the definitions in there.
* Support at least GHC 8.6, 8.8, 8.10, 9.0
3 changes: 3 additions & 0 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ maintainer: [email protected]
license: Apache-2.0
github: camfort/reprinter

extra-source-files:
- CHANGELOG.md

dependencies:
- base >=4.9 && <5

Expand Down
4 changes: 3 additions & 1 deletion reprinter.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cabal-version: 1.12
--
-- see: https://github.com/sol/hpack
--
-- hash: 51c7c3d83184ed5705c38cb91f4c299ea882d3368bde8fb4911dd680fbeebf3a
-- hash: 164cc4d2149c1ec8f25483d408c9daf06fa85d19cdf998cc487e76a9c03c3efe

name: reprinter
version: 0.3.0.0
Expand All @@ -17,6 +17,8 @@ author: Dominic Orchard, Vilem-Benjamin Liepelt, Harry Clarke
maintainer: [email protected]
license: Apache-2.0
build-type: Simple
extra-source-files:
CHANGELOG.md

source-repository head
type: git
Expand Down
2 changes: 1 addition & 1 deletion src/Text/Reprinter.hs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module Text.Reprinter
-- Import solely for re-exporting for library clients
import Data.Functor.Identity
import Data.Generics
--


import Text.Reprinter.StringLike
import Control.Monad (forM)
Expand Down

0 comments on commit 88db585

Please sign in to comment.