Skip to content

Commit

Permalink
Allow GHC 9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ysangkok authored and tomjaguarpaw committed Oct 16, 2023
1 parent 0eaa4bd commit 1ae684e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
cabal: ["3.10.1.0"]
ghc: ["8.0.2", "8.2.2", "8.4.4", "8.6.5", "8.8.4", "8.10.7", "9.2.7", "9.4.4"]
ghc: ["8.0.2", "8.2.2", "8.4.4", "8.6.5", "8.8.4", "8.10.7", "9.2.7", "9.4.4", "9.8.1"]
exclude:
# https://github.com/haskell/text/pull/404
- os: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion hedgehog-dieharder/hedgehog-dieharder.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ executable dieharder-input
build-depends:
hedgehog
, base >= 3 && < 5
, bytestring >= 0.10.4.0 && < 0.12
, bytestring >= 0.10.4.0 && < 0.13
4 changes: 2 additions & 2 deletions hedgehog-example/hedgehog-example.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ library
, process >= 1.2 && < 1.7
, QuickCheck >= 2.7 && < 2.15
, resourcet >= 1.1 && < 1.4
, template-haskell >= 2.10 && < 2.21
, template-haskell >= 2.10 && < 2.22
, temporary >= 1.3 && < 1.4
, temporary-resourcet >= 0.1 && < 0.2
, text >= 1.1 && < 2.1
, text >= 1.1 && < 2.2
, transformers >= 0.4 && < 0.7

test-suite test
Expand Down
10 changes: 5 additions & 5 deletions hedgehog/hedgehog.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ library
, ansi-terminal >= 0.6 && < 1.1
, async >= 2.0 && < 2.3
, barbies >= 1.0 && < 2.1
, bytestring >= 0.10 && < 0.12
, bytestring >= 0.10 && < 0.13
, concurrent-output >= 1.7 && < 1.11
, containers >= 0.4 && < 0.7
, deepseq >= 1.1.0.0 && < 1.5
, deepseq >= 1.1.0.0 && < 1.6
, directory >= 1.2 && < 1.4
, erf >= 2.0 && < 2.1
, exceptions >= 0.7 && < 0.11
Expand All @@ -72,8 +72,8 @@ library
, resourcet >= 1.1 && < 1.4
, safe-exceptions >= 0.1 && < 0.2
, stm >= 2.4 && < 2.6
, template-haskell >= 2.10 && < 2.21
, text >= 1.1 && < 2.1
, template-haskell >= 2.10 && < 2.22
, text >= 1.1 && < 2.2
, time >= 1.4 && < 1.13
, transformers >= 0.5 && < 0.7
, transformers-base >= 0.4.5.1 && < 0.5
Expand Down Expand Up @@ -148,7 +148,7 @@ test-suite test
, mmorph >= 1.0 && < 1.3
, mtl >= 2.1 && < 2.4
, pretty-show >= 1.6 && < 1.11
, text >= 1.1 && < 2.1
, text >= 1.1 && < 2.2
, transformers >= 0.3 && < 0.7

default-language:
Expand Down
1 change: 1 addition & 0 deletions hedgehog/src/Hedgehog/Internal/Property.hs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE UndecidableInstances #-} -- Distributive
{-# OPTIONS_GHC -Wwarn=x-partial #-}

module Hedgehog.Internal.Property (
-- * Property
Expand Down
1 change: 1 addition & 0 deletions hedgehog/src/Hedgehog/Internal/Report.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TupleSections #-}
{-# OPTIONS_GHC -Wwarn=x-partial #-}

module Hedgehog.Internal.Report (
-- * Report
Expand Down

0 comments on commit 1ae684e

Please sign in to comment.