prednote 0.24.2.0 → 0.26.0.0
raw patch · 7 files changed
+27/−25 lines, 7 filesdep ~rainbowPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: rainbow
API changes (from Hackage documentation)
Files
- current-versions.txt +13/−11
- lib/Prednote.hs +1/−1
- lib/Prednote/Core.hs +1/−1
- lib/Prednote/Format.hs +4/−4
- minimum-versions.txt +4/−4
- prednote.cabal +3/−3
- sunlight-test.hs +1/−1
current-versions.txt view
@@ -1,14 +1,14 @@ This package was tested to work with these dependency versions and compiler version. These are the default versions fetched by cabal install.-Tested as of: 2014-07-17 15:13:52.820082 UTC-Path to compiler: ghc-7.8.2-Compiler description: 7.8.2+Tested as of: 2014-08-12 13:26:39.972876 UTC+Path to compiler: ghc-7.8.3+Compiler description: 7.8.3 -/opt/ghc/7.8.2/lib/ghc-7.8.2/package.conf.d:+/opt/ghc/7.8.3/lib/ghc-7.8.3/package.conf.d: Cabal-1.18.1.3 array-0.5.0.0- base-4.7.0.0+ base-4.7.0.1 bin-package-db-0.0.0.0 binary-0.7.1.0 rts-1.0@@ -17,8 +17,9 @@ deepseq-1.3.0.2 directory-1.2.1.0 filepath-1.3.0.2- (ghc-7.8.2)+ (ghc-7.8.3) ghc-prim-0.3.1.0+ haskeline-0.7.1.2 (haskell2010-1.1.2.0) (haskell98-2.0.0.3) hoopl-3.10.0.1@@ -29,16 +30,17 @@ pretty-1.1.1.1 process-1.2.0.0 template-haskell-2.9.0.0+ terminfo-0.4.0.0 time-1.4.2 transformers-0.3.0.0 unix-2.7.0.1+ xhtml-3000.2.1 -/home/massysett/prednote/library/sunlight-10118/db:- contravariant-0.6- prednote-0.24.2.0- rainbow-0.14.0.2+/home/massysett/prednote/library/sunlight-18435/db:+ contravariant-0.6.1.1+ prednote-0.26.0.0+ rainbow-0.16.0.0 split-0.2.2- terminfo-0.4.0.0 text-1.1.1.3 transformers-0.4.1.0 transformers-compat-0.3.3.4
lib/Prednote.hs view
@@ -105,7 +105,7 @@ import Prednote.Prebuilt ((&&&), (|||)) import Prednote.Core (Pred) import qualified Prednote.Core as C-import System.Console.Rainbow+import Rainbow import Data.Tree -- | Indents and formats static labels for display. This is a 'plan'
lib/Prednote/Core.hs view
@@ -27,7 +27,7 @@ module Prednote.Core where -import System.Console.Rainbow+import Rainbow import Prelude hiding (filter, not) import qualified Prelude import Data.Functor.Contravariant (Contravariant(..))
lib/Prednote/Format.hs view
@@ -4,7 +4,7 @@ -- are formatted. module Prednote.Format where -import System.Console.Rainbow+import Rainbow import Data.Text (Text) import qualified Data.Text as X import qualified Prednote.Core as C@@ -15,11 +15,11 @@ -- | A colorful label for 'True' values. lblTrue :: [Chunk]-lblTrue = ["[", f_green <> "TRUE", "]"]+lblTrue = ["[", fore green <> "TRUE", "]"] -- | A colorful label for 'False' values. lblFalse :: [Chunk]-lblFalse = ["[", f_red <> "FALSE", "]"]+lblFalse = ["[", fore red <> "FALSE", "]"] -- | Indent amount. indentAmt :: Int@@ -43,7 +43,7 @@ -- | A label for a short circuit. shortCir :: Int -> [Chunk]-shortCir = indent ["[", f_yellow <> "short circuit", "]"]+shortCir = indent ["[", fore yellow <> "short circuit", "]"] -- | Indents a 'Text' by the given 'Int' multiplied by -- 'indentAmt'.
minimum-versions.txt view
@@ -1,7 +1,7 @@ This package was tested to work with these dependency versions and compiler version. These are the minimum versions given in the .cabal file.-Tested as of: 2014-07-17 15:13:52.820082 UTC+Tested as of: 2014-08-12 13:26:39.972876 UTC Path to compiler: ghc-7.4.1 Compiler description: 7.4.1 @@ -33,10 +33,10 @@ time-1.4 unix-2.5.1.0 -/home/massysett/prednote/library/sunlight-10118/db:+/home/massysett/prednote/library/sunlight-18435/db: contravariant-0.2.0.1- prednote-0.24.2.0- rainbow-0.14.0.2+ prednote-0.26.0.0+ rainbow-0.16.0.0 split-0.2.2 terminfo-0.4.0.0 text-0.11.2.0
prednote.cabal view
@@ -3,10 +3,10 @@ -- http://www.github.com/massysett/cartel -- -- Script name used to generate: genCabal.hs--- Generated on: 2014-07-17 11:13:23.064263 EDT+-- Generated on: 2014-08-12 09:33:12.761982 EDT -- Cartel library version: 0.10.0.2 name: prednote-version: 0.24.2.0+version: 0.26.0.0 cabal-version: >= 1.14 build-type: Simple license: BSD3@@ -55,7 +55,7 @@ build-depends: base ((> 4.5.0.0 || == 4.5.0.0) && < 5) , contravariant ((> 0.2.0.1 || == 0.2.0.1) && < 0.7)- , rainbow ((> 0.14.0.2 || == 0.14.0.2) && < 0.15)+ , rainbow ((> 0.16.0.0 || == 0.16.0.0) && < 0.17) , split ((> 0.2.2 || == 0.2.2) && < 0.3) , text ((> 0.11.2.0 || == 0.11.2.0) && < 1.2) , containers ((> 0.4.2.1 || == 0.4.2.1) && < 0.6)
sunlight-test.hs view
@@ -8,7 +8,7 @@ , tiLowest = ("7.4.1", "ghc-7.4.1", "ghc-pkg-7.4.1") , tiDefault = [ ("7.4.1", "ghc-7.4.1", "ghc-pkg-7.4.1") , ("7.6.3", "ghc-7.6.3", "ghc-pkg-7.6.3")- , ("7.8.2", "ghc-7.8.2", "ghc-pkg-7.8.2") ]+ , ("7.8.3", "ghc-7.8.3", "ghc-pkg-7.8.3") ] , tiTest = [] }