pretty-simple 1.0.0.3 → 1.0.0.4
raw patch · 2 files changed
+7/−7 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- pretty-simple.cabal +6/−6
- src/Text/Pretty/Simple.hs +1/−1
pretty-simple.cabal view
@@ -1,5 +1,5 @@ name: pretty-simple-version: 1.0.0.3+version: 1.0.0.4 synopsis: pretty printer for data types with a 'Show' instance. description: Please see README.md homepage: https://github.com/cdepillabout/pretty-simple@@ -7,7 +7,7 @@ license-file: LICENSE author: Dennis Gosnell maintainer: cdep.illabout@gmail.com-copyright: 2016 Dennis Gosnell+copyright: 2017 Dennis Gosnell category: Text build-type: Simple extra-source-files: README.md@@ -27,7 +27,7 @@ , Text.Pretty.Simple.Internal.ExprToOutput , Text.Pretty.Simple.Internal.Output , Text.Pretty.Simple.Internal.OutputPrinter- build-depends: base >= 4.6 && < 5+ build-depends: base >= 4.8 && < 5 , ansi-terminal , containers , lens@@ -51,9 +51,9 @@ ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N if flag(buildexample)- buildable: True- if !flag(buildexample)- buildable: False+ buildable: True+ else+ buildable: False test-suite pretty-simple-doctest type: exitcode-stdio-1.0
src/Text/Pretty/Simple.hs view
@@ -116,7 +116,7 @@ -- -- Slightly more complicated lists: ----- >>> pPrintNoColor $ [ Foo [ (), () ] "hello" ]+-- >>> pPrintNoColor $ [ Foo [ (), () ] "hello" ] -- [ Foo -- [ () -- , ()