ansi-wl-pprint 0.6.7.2 → 0.6.7.3
raw patch · 2 files changed
+12/−4 lines, 2 filesnew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Text.PrettyPrint.ANSI.Leijen: SChar :: Char -> SimpleDoc -> SimpleDoc
- Text.PrettyPrint.ANSI.Leijen: SEmpty :: SimpleDoc
- Text.PrettyPrint.ANSI.Leijen: SFail :: SimpleDoc
- Text.PrettyPrint.ANSI.Leijen: SLine :: !Int -> SimpleDoc -> SimpleDoc
- Text.PrettyPrint.ANSI.Leijen: SSGR :: [SGR] -> SimpleDoc -> SimpleDoc
- Text.PrettyPrint.ANSI.Leijen: SText :: !Int -> String -> SimpleDoc -> SimpleDoc
+ Text.PrettyPrint.ANSI.Leijen: [SChar] :: Char -> SimpleDoc -> SimpleDoc
+ Text.PrettyPrint.ANSI.Leijen: [SEmpty] :: SimpleDoc
+ Text.PrettyPrint.ANSI.Leijen: [SFail] :: SimpleDoc
+ Text.PrettyPrint.ANSI.Leijen: [SLine] :: !Int -> SimpleDoc -> SimpleDoc
+ Text.PrettyPrint.ANSI.Leijen: [SSGR] :: [SGR] -> SimpleDoc -> SimpleDoc
+ Text.PrettyPrint.ANSI.Leijen: [SText] :: !Int -> String -> SimpleDoc -> SimpleDoc
Files
Text/PrettyPrint/ANSI/Leijen.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} ----------------------------------------------------------------------------- -- | -- Module : Text.PrettyPrint.ANSI.Leijen@@ -150,7 +151,9 @@ import Data.String (IsString(..)) import Data.Maybe (catMaybes)+#if __GLASGOW_HASKELL__ < 710 import Data.Monoid (Monoid, mappend, mconcat, mempty)+#endif infixr 5 </>,<//>,<$>,<$$>
ansi-wl-pprint.cabal view
@@ -1,6 +1,6 @@ Name: ansi-wl-pprint-Version: 0.6.7.2-Cabal-Version: >= 1.2+Version: 0.6.7.3+Cabal-Version: >= 1.6 Category: User Interfaces, Text Synopsis: The Wadler/Leijen Pretty Printer for colored ANSI terminal output Description: This is a pretty printing library based on Wadler's paper "A Prettier Printer". It has been enhanced with support for ANSI terminal colored output using the ansi-terminal package.@@ -8,9 +8,14 @@ License-File: LICENSE Extra-Source-Files: README.textile Author: Daan Leijen, Max Bolingbroke-Maintainer: batterseapower@hotmail.com-Homepage: http://github.com/batterseapower/ansi-wl-pprint+Maintainer: Edward Kmett <ekmett@gmail.com>+Bug-Reports: http://github.com/ekmett/ansi-wl-pprint/issues+Homepage: http://github.com/ekmett/ansi-wl-pprint Build-Type: Simple++Source-Repository head+ Type: git+ Location: git://github.com/ekmett/ansi-wl-pprint.git Flag NewBase Description: Choose the new smaller, split-up base package with 6.10