Skip to content

Commit

Permalink
Allow newer deps (#457)
Browse files Browse the repository at this point in the history
cabal test all --constraint='mtl>=2.3' --constraint='transformers>=0.6' --constraint='mmorph>=1.2'
  • Loading branch information
ysangkok authored and jacobstanley committed May 22, 2022
1 parent 6f1048f commit 4139585
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions hedgehog-example/hedgehog-example.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ library
, filepath >= 1.3 && < 1.5
, hashtables >= 1.2 && < 1.4
, lifted-base >= 0.2 && < 0.3
, mmorph >= 1.0 && < 1.2
, mtl >= 2.1 && < 2.3
, mmorph >= 1.0 && < 1.3
, mtl >= 2.1 && < 2.4
, parsec >= 3.1 && < 3.2
, pretty-show >= 1.6 && < 1.11
, process >= 1.2 && < 1.7
Expand All @@ -70,7 +70,7 @@ library
, temporary >= 1.3 && < 1.4
, temporary-resourcet >= 0.1 && < 0.2
, text >= 1.1 && < 2.1
, transformers >= 0.4 && < 0.6
, transformers >= 0.4 && < 0.7

test-suite test
type:
Expand Down
2 changes: 1 addition & 1 deletion hedgehog-quickcheck/hedgehog-quickcheck.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ library
base >= 3 && < 5
, hedgehog >= 0.5 && < 1.2
, QuickCheck >= 2.7 && < 2.15
, transformers >= 0.4 && < 0.6
, transformers >= 0.4 && < 0.7

ghc-options:
-Wall
Expand Down
10 changes: 5 additions & 5 deletions hedgehog/hedgehog.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ library
, lifted-async >= 0.7 && < 0.11
, mmorph >= 1.0 && < 1.3
, monad-control >= 1.0 && < 1.1
, mtl >= 2.1 && < 2.3
, mtl >= 2.1 && < 2.4
, pretty-show >= 1.6 && < 1.11
, primitive >= 0.6 && < 0.8
, random >= 1.1 && < 1.3
Expand All @@ -74,7 +74,7 @@ library
, template-haskell >= 2.10 && < 2.19
, text >= 1.1 && < 2.1
, time >= 1.4 && < 1.13
, transformers >= 0.5 && < 0.6
, transformers >= 0.5 && < 0.7
, transformers-base >= 0.4.5.1 && < 0.5
, wl-pprint-annotated >= 0.0 && < 0.2

Expand Down Expand Up @@ -144,10 +144,10 @@ test-suite test
, base >= 3 && < 5
, containers >= 0.4 && < 0.7
, mmorph >= 1.0 && < 1.3
, mtl >= 2.1 && < 2.3
, mtl >= 2.1 && < 2.4
, pretty-show >= 1.6 && < 1.11
, text >= 1.1 && < 1.3
, transformers >= 0.3 && < 0.6
, text >= 1.1 && < 2.1
, transformers >= 0.3 && < 0.7

default-language:
Haskell2010

0 comments on commit 4139585

Please sign in to comment.