Skip to content

Commit 4acd679

Browse files
committed
Support QuickCheck-2.16, release quickcheck-lockstep-0.8.1
1 parent 69cbd66 commit 4acd679

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for quickcheck-lockstep
22

3+
## 0.8.1 -- 2025-07-18
4+
5+
* PATCH: support `QuickCheck-2.16`
6+
37
## 0.8.0 -- 2025-07-03
48

59
* BREAKING: Support `quickcheck-dynamic-4`. Going from version 3 to 4, some

cabal.project

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
index-state:
22
-- Bump this if you need newer packages from Hackage
3-
-- current date: release quickcheck-lockstep-0.8.0
4-
, hackage.haskell.org 2025-07-03T00:00:00Z
3+
-- current date: QuickCheck-2.16
4+
, hackage.haskell.org 2025-07-18T00:00:00Z
55

66
packages: .
77

quickcheck-lockstep.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.4
22
name: quickcheck-lockstep
3-
version: 0.8.0
3+
version: 0.8.1
44
license: BSD-3-Clause
55
license-file: LICENSE
66
author: Edsko de Vries
@@ -34,10 +34,10 @@ source-repository head
3434
type: git
3535
location: https://github.com/well-typed/quickcheck-lockstep
3636

37-
source-repository head
37+
source-repository this
3838
type: git
3939
location: https://github.com/well-typed/quickcheck-lockstep
40-
tag: quickcheck-lockstep-0.8.0
40+
tag: quickcheck-lockstep-0.8.1
4141

4242
common language
4343
-- This is at the top-level so that `cabal check` does not complain.
@@ -143,7 +143,7 @@ library
143143
, constraints ^>=0.13 || ^>=0.14
144144
, containers ^>=0.6 || ^>=0.7 || ^>=0.8
145145
, mtl ^>=2.2 || ^>=2.3
146-
, QuickCheck ^>=2.14 || ^>=2.15
146+
, QuickCheck ^>=2.14 || ^>=2.15 || ^>=2.16
147147
, quickcheck-dynamic ^>=4.0
148148

149149
hs-source-dirs: src

test/Test/IORef/Full.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import Data.IORef
1212
import Data.Map (Map)
1313
import qualified Data.Map as Map
1414
import Data.Proxy
15-
import Test.QuickCheck
15+
import Test.QuickCheck (Arbitrary (..), Gen, Property, choose,
16+
elements, expectFailure, oneof)
1617
import Test.Tasty
1718
import Test.Tasty.HUnit
1819
import Test.Tasty.QuickCheck (testProperty)

test/Test/IORef/Simple.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Data.IORef
1111
import Data.Map (Map)
1212
import qualified Data.Map as Map
1313
import Data.Proxy
14-
import Test.QuickCheck
14+
import Test.QuickCheck (Gen, Property, choose, elements, oneof)
1515
import Test.Tasty
1616
import Test.Tasty.QuickCheck (testProperty)
1717

0 commit comments

Comments
 (0)