Skip to content

Commit 4139585

Browse files
ysangkokjacobstanley
authored andcommitted
Allow newer deps (#457)
cabal test all --constraint='mtl>=2.3' --constraint='transformers>=0.6' --constraint='mmorph>=1.2'
1 parent 6f1048f commit 4139585

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

hedgehog-example/hedgehog-example.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ library
5959
, filepath >= 1.3 && < 1.5
6060
, hashtables >= 1.2 && < 1.4
6161
, lifted-base >= 0.2 && < 0.3
62-
, mmorph >= 1.0 && < 1.2
63-
, mtl >= 2.1 && < 2.3
62+
, mmorph >= 1.0 && < 1.3
63+
, mtl >= 2.1 && < 2.4
6464
, parsec >= 3.1 && < 3.2
6565
, pretty-show >= 1.6 && < 1.11
6666
, process >= 1.2 && < 1.7
@@ -70,7 +70,7 @@ library
7070
, temporary >= 1.3 && < 1.4
7171
, temporary-resourcet >= 0.1 && < 0.2
7272
, text >= 1.1 && < 2.1
73-
, transformers >= 0.4 && < 0.6
73+
, transformers >= 0.4 && < 0.7
7474

7575
test-suite test
7676
type:

hedgehog-quickcheck/hedgehog-quickcheck.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ library
5252
base >= 3 && < 5
5353
, hedgehog >= 0.5 && < 1.2
5454
, QuickCheck >= 2.7 && < 2.15
55-
, transformers >= 0.4 && < 0.6
55+
, transformers >= 0.4 && < 0.7
5656

5757
ghc-options:
5858
-Wall

hedgehog/hedgehog.cabal

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ library
6565
, lifted-async >= 0.7 && < 0.11
6666
, mmorph >= 1.0 && < 1.3
6767
, monad-control >= 1.0 && < 1.1
68-
, mtl >= 2.1 && < 2.3
68+
, mtl >= 2.1 && < 2.4
6969
, pretty-show >= 1.6 && < 1.11
7070
, primitive >= 0.6 && < 0.8
7171
, random >= 1.1 && < 1.3
@@ -74,7 +74,7 @@ library
7474
, template-haskell >= 2.10 && < 2.19
7575
, text >= 1.1 && < 2.1
7676
, time >= 1.4 && < 1.13
77-
, transformers >= 0.5 && < 0.6
77+
, transformers >= 0.5 && < 0.7
7878
, transformers-base >= 0.4.5.1 && < 0.5
7979
, wl-pprint-annotated >= 0.0 && < 0.2
8080

@@ -144,10 +144,10 @@ test-suite test
144144
, base >= 3 && < 5
145145
, containers >= 0.4 && < 0.7
146146
, mmorph >= 1.0 && < 1.3
147-
, mtl >= 2.1 && < 2.3
147+
, mtl >= 2.1 && < 2.4
148148
, pretty-show >= 1.6 && < 1.11
149-
, text >= 1.1 && < 1.3
150-
, transformers >= 0.3 && < 0.6
149+
, text >= 1.1 && < 2.1
150+
, transformers >= 0.3 && < 0.7
151151

152152
default-language:
153153
Haskell2010

0 commit comments

Comments
 (0)