prettyprinter-compat-ansi-wl-pprint 1.1 → 1.1.1
raw patch · 3 files changed
+11/−10 lines, 3 filesdep −semigroupsdep ~basePVP ok
version bump matches the API change (PVP)
Dependencies removed: semigroups
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−0
- prettyprinter-compat-ansi-wl-pprint.cabal +3/−6
- src/Text/PrettyPrint/ANSI/Leijen.hs +0/−4
CHANGELOG.md view
@@ -1,3 +1,11 @@+# [1.1.1] – April 2026++- [Drop support for GHC 7](https://github.com/quchen/prettyprinter/pull/278)+- [Remove compatibility code for GHC < 8](https://github.com/quchen/prettyprinter/pull/285)+- [Make it compile with MicroHs](https://github.com/quchen/prettyprinter/pull/270)++[1.1.1]: https://github.com/quchen/prettyprinter/compare/compat-ansi-wl-pprint-1.1...compat-ansi-wl-pprint-1.1.1+ # [1.1] - [Change `renderPretty` to use `layoutPretty` instead of `layoutSmart`.](https://github.com/quchen/prettyprinter/pull/244)
prettyprinter-compat-ansi-wl-pprint.cabal view
@@ -1,5 +1,5 @@ name: prettyprinter-compat-ansi-wl-pprint-version: 1.1+version: 1.1.1 cabal-version: >= 1.10 category: User Interfaces, Text synopsis: Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«.@@ -13,7 +13,7 @@ bug-reports: http://github.com/quchen/prettyprinter/issues homepage: http://github.com/quchen/prettyprinter build-type: Simple-tested-with: GHC==9.12.2, GHC==9.10.3, GHC==9.8.4, GHC==9.6.7, GHC==9.4.8, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2+tested-with: GHC==9.14.1, GHC==9.12.2, GHC==9.10.3, GHC==9.8.4, GHC==9.6.7, GHC==9.4.8, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2 source-repository head type: git@@ -29,10 +29,7 @@ , OverloadedStrings build-depends:- base >= 4.5 && < 5+ base >= 4.9 && < 5 , text >= 1.2 , prettyprinter >= 1.7.0 , prettyprinter-ansi-terminal >= 1.1-- if !impl(ghc >= 8.0)- build-depends: semigroups >= 0.1
src/Text/PrettyPrint/ANSI/Leijen.hs view
@@ -19,11 +19,7 @@ ) where -#if MIN_VERSION_base(4,8,0) import Prelude hiding ((<$>))-#else-import Prelude-#endif import qualified Data.Text.Lazy as TL import System.IO