barecheck 0.2.0.0 → 0.2.0.2
raw patch · 5 files changed
+111/−7 lines, 5 filesdep ~textdep ~timePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: text, time
API changes (from Hackage documentation)
Files
- barecheck.cabal +4/−4
- current-versions.txt +46/−0
- genCabal.hs +3/−3
- minimum-versions.txt +43/−0
- sunlight-test.hs +15/−0
barecheck.cabal view
@@ -3,10 +3,10 @@ -- http://www.github.com/massysett/cartel -- -- Script name used to generate: genCabal.hs--- Generated on: 2014-08-04 09:08:04.876727 EDT+-- Generated on: 2014-11-23 08:42:59.282905 EST -- Cartel library version: 0.10.0.2 name: barecheck-version: 0.2.0.0+version: 0.2.0.2 cabal-version: >= 1.14 build-type: Simple license: BSD3@@ -75,9 +75,9 @@ build-depends: QuickCheck ((> 2.7 || == 2.7) && < 2.8) , base ((> 4.5.0.0 || == 4.5.0.0) && < 4.8.0.0)- , text ((> 0.11.0.0 || == 0.11.0.0) && < 1.2)+ , text ((> 0.11.3.1 || == 0.11.3.1) && < 1.3) , containers ((> 0.4.2.1 || == 0.4.2.1) && < 0.6)- , time ((> 1.4 || == 1.4) && < 1.5)+ , time ((> 1.4 || == 1.4) && < 1.6) hs-source-dirs: lib ghc-options:
current-versions.txt view
@@ -0,0 +1,46 @@+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-08-11 21:47:39.133617 UTC+Path to compiler: ghc-7.8.3+Compiler description: 7.8.3++/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.1+ bin-package-db-0.0.0.0+ binary-0.7.1.0+ rts-1.0+ bytestring-0.10.4.0+ containers-0.5.5.1+ deepseq-1.3.0.2+ directory-1.2.1.0+ filepath-1.3.0.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+ hpc-0.6.0.1+ integer-gmp-0.5.1.0+ old-locale-1.0.0.6+ old-time-1.1.0.2+ 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/barecheck/sunlight-32666/db:+ QuickCheck-2.7.6+ barecheck-0.2.0.0+ primitive-0.5.3.0+ random-1.0.1.1+ text-1.1.1.3+ tf-random-0.5+
genCabal.hs view
@@ -8,7 +8,7 @@ import qualified Cartel as A versionInts :: [Int]-versionInts = [0,2,0,0]+versionInts = [0,2,0,2] version :: A.Version version = A.Version versionInts@@ -73,13 +73,13 @@ base = A.closedOpen "base" [4,5,0,0] [4,8,0,0] text :: A.Package-text = A.closedOpen "text" [0,11,0,0] [1,2]+text = A.closedOpen "text" [0,11,3,1] [1,3] containers :: A.Package containers = A.closedOpen "containers" [0,4,2,1] [0,6] time :: A.Package-time = A.closedOpen "time" [1,4] [1,5]+time = A.closedOpen "time" [1,4] [1,6] library :: [String]
minimum-versions.txt view
@@ -0,0 +1,43 @@+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-08-11 21:47:39.133617 UTC+Path to compiler: ghc-7.4.1+Compiler description: 7.4.1++/opt/ghc/7.4.1/lib/ghc-7.4.1/package.conf.d:+ Cabal-1.14.0+ array-0.4.0.0+ base-4.5.0.0+ bin-package-db-0.0.0.0+ binary-0.5.1.0+ bytestring-0.9.2.1+ containers-0.4.2.1+ deepseq-1.3.0.0+ directory-1.1.0.2+ extensible-exceptions-0.1.1.4+ filepath-1.3.0.0+ (ghc-7.4.1)+ ghc-prim-0.2.0.0+ (haskell2010-1.1.0.1)+ (haskell98-2.0.0.1)+ hoopl-3.8.7.3+ hpc-0.5.1.1+ integer-gmp-0.4.0.0+ old-locale-1.0.0.4+ old-time-1.1.0.0+ pretty-1.1.1.0+ process-1.1.0.1+ rts-1.0+ template-haskell-2.7.0.0+ time-1.4+ unix-2.5.1.0++/home/massysett/barecheck/sunlight-32666/db:+ QuickCheck-2.7+ barecheck-0.2.0.0+ primitive-0.5.3.0+ random-1.0.1.1+ text-0.11.3.1+ tf-random-0.5+
sunlight-test.hs view
@@ -0,0 +1,15 @@+module Main where++import Test.Sunlight++inputs = TestInputs+ { tiDescription = Nothing+ , tiCabal = "cabal"+ , 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.3", "ghc-7.8.3", "ghc-pkg-7.8.3") ]+ , tiTest = []+ }++main = runTests inputs