packages feed

quickcheck-lockstep 0.8.0 → 0.8.1

raw patch · 4 files changed

+11/−6 lines, 4 filesdep ~QuickCheck

Dependency ranges changed: QuickCheck

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for quickcheck-lockstep +## 0.8.1 -- 2025-07-18++* PATCH: support `QuickCheck-2.16`+ ## 0.8.0 -- 2025-07-03  * BREAKING: Support `quickcheck-dynamic-4`. Going from version 3 to 4, some
quickcheck-lockstep.cabal view
@@ -1,6 +1,6 @@ cabal-version:   3.4 name:            quickcheck-lockstep-version:         0.8.0+version:         0.8.1 license:         BSD-3-Clause license-file:    LICENSE author:          Edsko de Vries@@ -34,10 +34,10 @@   type:     git   location: https://github.com/well-typed/quickcheck-lockstep -source-repository head+source-repository this   type:     git   location: https://github.com/well-typed/quickcheck-lockstep-  tag:      quickcheck-lockstep-0.8.0+  tag:      quickcheck-lockstep-0.8.1  common language   -- This is at the top-level so that `cabal check` does not complain.@@ -143,7 +143,7 @@     , constraints         ^>=0.13 || ^>=0.14     , containers          ^>=0.6  || ^>=0.7  || ^>=0.8     , mtl                 ^>=2.2  || ^>=2.3-    , QuickCheck          ^>=2.14 || ^>=2.15+    , QuickCheck          ^>=2.14 || ^>=2.15 || ^>=2.16     , quickcheck-dynamic  ^>=4.0    hs-source-dirs:  src
test/Test/IORef/Full.hs view
@@ -12,7 +12,8 @@ import           Data.Map (Map) import qualified Data.Map as Map import           Data.Proxy-import           Test.QuickCheck+import           Test.QuickCheck (Arbitrary (..), Gen, Property, choose,+                     elements, expectFailure, oneof) import           Test.Tasty import           Test.Tasty.HUnit import           Test.Tasty.QuickCheck (testProperty)
test/Test/IORef/Simple.hs view
@@ -11,7 +11,7 @@ import           Data.Map (Map) import qualified Data.Map as Map import           Data.Proxy-import           Test.QuickCheck+import           Test.QuickCheck (Gen, Property, choose, elements, oneof) import           Test.Tasty import           Test.Tasty.QuickCheck (testProperty)