Skip to content

Commit

Permalink
GHC 9.4 compatibility (hedgehogqa#461)
Browse files Browse the repository at this point in the history
* GHC 9.4 compatibility

* CI: Add GHC 9.4.1, use Cabal 3.8
  • Loading branch information
ysangkok authored and mbg committed Sep 2, 2022
1 parent 13ddab1 commit 687dedf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
cabal: ["3.4"]
ghc: ["8.0.2", "8.2.2", "8.4.4", "8.6.5", "8.8.4", "8.10.7", "9.2.1"]
cabal: ["3.8.1.0"]
ghc: ["8.0.2", "8.2.2", "8.4.4", "8.6.5", "8.8.4", "8.10.7", "9.2.4", "9.4.1"]
exclude:
# https://github.com/haskell/text/pull/404
- os: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion hedgehog-example/hedgehog-example.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ library
, process >= 1.2 && < 1.7
, QuickCheck >= 2.7 && < 2.15
, resourcet >= 1.1 && < 1.3
, template-haskell >= 2.10 && < 2.19
, template-haskell >= 2.10 && < 2.20
, temporary >= 1.3 && < 1.4
, temporary-resourcet >= 0.1 && < 0.2
, text >= 1.1 && < 2.1
Expand Down
2 changes: 1 addition & 1 deletion hedgehog/hedgehog.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ library
, random >= 1.1 && < 1.3
, resourcet >= 1.1 && < 1.3
, stm >= 2.4 && < 2.6
, template-haskell >= 2.10 && < 2.19
, template-haskell >= 2.10 && < 2.20
, text >= 1.1 && < 2.1
, time >= 1.4 && < 1.13
, transformers >= 0.5 && < 0.6
Expand Down
1 change: 1 addition & 0 deletions hedgehog/src/Hedgehog/Internal/Gen.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-} -- MonadBase
#if __GLASGOW_HASKELL__ >= 806
{-# LANGUAGE DerivingVia #-}
Expand Down

0 comments on commit 687dedf

Please sign in to comment.