Skip to content

Commit b0dea6d

Browse files
authored
Merge pull request #135 from haskellari/QC-2.16
Allow QuickCheck-2.16
2 parents ddae50f + 6bc3d14 commit b0dea6d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.19.20250506
11+
# version: 0.19.20250605
1212
#
13-
# REGENDATA ("0.19.20250506",["github","cabal.project"])
13+
# REGENDATA ("0.19.20250605",["github","cabal.project"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -179,8 +179,8 @@ jobs:
179179
- name: install cabal-docspec
180180
run: |
181181
mkdir -p $HOME/.cabal/bin
182-
curl -sL https://github.com/phadej/cabal-extras/releases/download/cabal-docspec-0.0.0.20240703/cabal-docspec-0.0.0.20240703-x86_64-linux.xz > cabal-docspec.xz
183-
echo '48bf3b7fd2f7f0caa6162afee57a755be8523e7f467b694900eb420f5f9a7b76 cabal-docspec.xz' | sha256sum -c -
182+
curl -sL https://github.com/phadej/cabal-extras/releases/download/cabal-docspec-0.0.0.20250606/cabal-docspec-0.0.0.20250606-x86_64-linux.xz > cabal-docspec.xz
183+
echo 'cc20bb5c19501b42bde77556bc419c7c0a5c8d1eb65663024d8a4e4c868bef25 cabal-docspec.xz' | sha256sum -c -
184184
xz -d < cabal-docspec.xz > $HOME/.cabal/bin/cabal-docspec
185185
rm -f cabal-docspec.xz
186186
chmod a+x $HOME/.cabal/bin/cabal-docspec

lattices.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 1.18
22
name: lattices
33
version: 2.2.1
4-
x-revision: 2
4+
x-revision: 3
55
category: Math
66
license: BSD3
77
license-file: LICENSE
@@ -86,7 +86,7 @@ library
8686
, deepseq >=1.3.0.0 && <1.6
8787
, hashable >=1.2.7.0 && <1.6
8888
, integer-logarithms >=1.0.3 && <1.1
89-
, QuickCheck >=2.12.6.1 && <2.16
89+
, QuickCheck >=2.12.6.1 && <2.17
9090
, tagged >=0.8.6 && <0.9
9191
, transformers >=0.3.0.0 && <0.7
9292
, universe-base >=1.1 && <1.2
@@ -115,7 +115,7 @@ test-suite test
115115
, QuickCheck
116116
, quickcheck-instances >=0.3.19 && <0.4
117117
, tasty >=1.2.1 && <1.6
118-
, tasty-quickcheck >=0.10 && <0.11
118+
, tasty-quickcheck >=0.10 && <0.12
119119
, transformers
120120
, universe-base
121121
, universe-reverse-instances

0 commit comments

Comments
 (0)