chell-quickcheck 0.2.4 → 0.2.5
raw patch · 2 files changed
+7/−3 lines, 2 filesdep ~QuickCheckPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck
API changes (from Hackage documentation)
Files
chell-quickcheck.cabal view
@@ -1,5 +1,5 @@ name: chell-quickcheck-version: 0.2.4+version: 0.2.5 license: MIT license-file: license.txt author: John Millikin <john@john-millikin.com>@@ -19,7 +19,7 @@ source-repository this type: git location: https://john-millikin.com/code/chell-quickcheck/- tag: chell-quickcheck_0.2.4+ tag: chell-quickcheck_0.2.5 library hs-source-dirs: lib@@ -28,7 +28,7 @@ build-depends: base >= 4.0 && < 5.0 , chell >= 0.3 && < 0.5- , QuickCheck >= 2.3 && < 2.8+ , QuickCheck >= 2.3 && < 2.9 , random exposed-modules:
lib/Test/Chell/QuickCheck.hs view
@@ -4,6 +4,7 @@ ( property ) where +import Data.Monoid (mempty) import System.Random (mkStdGen) import qualified Test.Chell as Chell@@ -63,6 +64,9 @@ #endif #if MIN_VERSION_QuickCheck(2,5,1) , State.numRecentlyDiscardedTests = 0+#endif+#if MIN_VERSION_QuickCheck(2,8,0)+ , State.labels = mempty #endif }