wl-pprint-text 1.2.0.1 → 1.2.0.2
raw patch · 3 files changed
+32/−17 lines, 3 filesdep ~base-compatdep ~text
Dependency ranges changed: base-compat, text
Files
- Changelog.md +5/−0
- Text/PrettyPrint/Leijen/Text.hs +6/−8
- wl-pprint-text.cabal +21/−9
Changelog.md view
@@ -1,3 +1,8 @@+1.2.0.2 (2022-01-09)+====================++* Dependency bumps.+ 1.2.0.1 (2020-01-28) ====================
Text/PrettyPrint/Leijen/Text.hs view
@@ -118,11 +118,11 @@ ) where -import Prelude ()-import Prelude.Compat hiding ((<$>))+import Prelude ()+import Prelude.Compat hiding ((<$>)) -import Data.String (IsString(..))-import System.IO (Handle, hPutChar, stdout)+import Data.String (IsString (..))+import System.IO (Handle, hPutChar, stdout) import Data.Int (Int64) import Data.List (intersperse)@@ -133,10 +133,8 @@ import qualified Data.Text.Lazy.Builder as B import qualified Data.Text.Lazy.IO as T -#if MIN_VERSION_base (4,9,0)-import Data.Semigroup (Semigroup(..))-#else-import Data.Monoid ((<>))+#if !MIN_VERSION_base (4,9,0)+import Data.Monoid ((<>)) #endif infixr 5 </>,<//>,<$>,<$$>
wl-pprint-text.cabal view
@@ -1,5 +1,6 @@+Cabal-version: >=1.10 Name: wl-pprint-text-Version: 1.2.0.1+Version: 1.2.0.2 Synopsis: A Wadler/Leijen Pretty Printer for Text values Description: A clone of wl-pprint for use with the text library. License: BSD3@@ -9,11 +10,21 @@ Copyright: 2007 Daan Leijen, 2010 Ivan Lazar Miljenovic Category: Text Build-type: Simple-Tested-With: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4,- GHC == 7.10.2, GHC == 8.0.1, GHC == 8.2.2,- GHC == 8.4.1, GHC == 8.6.2, GHC == 8.8.2,- GHC == 8.10.1-Cabal-version: >=1.6++Tested-With:+ GHC == 7.4.2+ GHC == 7.6.3+ GHC == 7.8.4+ GHC == 7.10.3+ GHC == 8.0.2+ GHC == 8.2.2+ GHC == 8.4.4+ GHC == 8.6.5+ GHC == 8.8.4+ GHC == 8.10.7+ GHC == 9.0.1+ GHC == 9.2.1+ Extra-Source-Files: Changelog.md README.md @@ -24,7 +35,8 @@ Library Exposed-modules: Text.PrettyPrint.Leijen.Text, Text.PrettyPrint.Leijen.Text.Monadic- Build-depends: base >= 4.5.0.0 && < 5,- base-compat >= 0.10 && < 0.12,- text >= 0.11.0.0 && < 1.3.0.0+ Build-depends: base >= 4.5.0.0 && < 5,+ base-compat >= 0.10 && < 0.13,+ text >= 0.11.0.0 && < 2.1+ Default-language: Haskell98 GHC-Options: -Wall