pretty 1.1.1.2 → 1.1.1.3
raw patch · 4 files changed
+13/−5 lines, 4 filesdep ~basedep ~deepseq
Dependency ranges changed: base, deepseq
Files
- CHANGELOG.md +7/−2
- README.md +2/−0
- pretty.cabal +3/−2
- src/Text/PrettyPrint/HughesPJ.hs +1/−1
CHANGELOG.md view
@@ -1,10 +1,15 @@ # Pretty library change log +## 1.1.1.3 -- 21st December, 2014++* Remove upper bound on `deepseq` package to fix build issues with+ latest GHC.+ ## 1.1.1.2 -- 18th August, 2014 -* Add NFData and Eq instances (by Ivan Lazar Miljenovic)+* Add NFData and Eq instances (by Ivan Lazar Miljenovic). -## 1.1.1.1+## 1.1.1.1 -- 27th October, 2013 * Update pretty cabal file and readme. * Fix tests to work with latest quickcheck.
README.md view
@@ -1,5 +1,7 @@ # Pretty : A Haskell Pretty-printer library +[](https://hackage.haskell.org/package/pretty) [](https://travis-ci.org/haskell/pretty)+ Pretty is a pretty-printing library, a set of API's that provides a way to easily print out text in a consistent format of your choosing. This is useful for compilers and related tools.
pretty.cabal view
@@ -1,5 +1,5 @@ name: pretty-version: 1.1.1.2+version: 1.1.1.3 synopsis: Pretty-printing library description: This package contains a pretty-printing library, a set of API's@@ -31,7 +31,7 @@ Text.PrettyPrint Text.PrettyPrint.HughesPJ build-depends: base >= 3 && < 5,- deepseq >= 1.1 && < 1.4+ deepseq >= 1.1 extensions: CPP, BangPatterns ghc-options: -Wall -fwarn-tabs @@ -40,6 +40,7 @@ hs-source-dirs: tests src build-depends: base >= 3 && < 5,+ deepseq >= 1.1, QuickCheck >= 2.5 && <3 main-is: Test.hs other-modules:
src/Text/PrettyPrint/HughesPJ.hs view
@@ -806,7 +806,7 @@ data Style = Style { mode :: Mode -- ^ The rendering mode , lineLength :: Int -- ^ Length of line, in chars- , ribbonsPerLine :: Float -- ^ Ratio of ribbon length to line length+ , ribbonsPerLine :: Float -- ^ Ratio of line length to ribbon length } -- | The default style (@mode=PageMode, lineLength=100, ribbonsPerLine=1.5@).