Skip to content

Commit 7b5aaba

Browse files
committed
Support GHC 9.12
1 parent 28ad79d commit 7b5aaba

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

trial-example/trial-example.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ source-repository head
2626

2727

2828
common common-options
29-
build-depends: base >= 4.12.0.0 && < 4.21
29+
build-depends: base >= 4.12.0.0 && < 4.22
3030
, trial
3131
, trial-optparse-applicative
3232
, trial-tomland

trial-optparse-applicative/trial-optparse-applicative.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ source-repository head
2626
location: https://github.com/kowainik/trial.git
2727

2828
common common-options
29-
build-depends: base >= 4.12.0.0 && < 4.21
29+
build-depends: base >= 4.12.0.0 && < 4.22
3030

3131
ghc-options: -Wall
3232
-Wcompat
@@ -70,5 +70,5 @@ library
7070
import: common-options
7171
hs-source-dirs: src
7272
build-depends: trial
73-
, optparse-applicative >= 0.15 && < 0.18
73+
, optparse-applicative >= 0.15 && < 0.19
7474
exposed-modules: Trial.OptparseApplicative

trial-tomland/trial-tomland.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ source-repository head
2626
location: https://github.com/kowainik/trial.git
2727

2828
common common-options
29-
build-depends: base >= 4.12.0.0 && < 4.21
29+
build-depends: base >= 4.12.0.0 && < 4.22
3030

3131
ghc-options: -Wall
3232
-Wcompat

trial/trial.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ source-repository head
5555
location: https://github.com/kowainik/trial.git
5656

5757
common common-options
58-
build-depends: base >= 4.12.0.0 && < 4.21
58+
build-depends: base >= 4.12.0.0 && < 4.22
5959

6060
ghc-options: -Wall
6161
-Wcompat
@@ -113,9 +113,9 @@ test-suite trial-test
113113

114114
build-depends: trial
115115
, dlist
116-
, hedgehog >= 1.0 && < 1.5
116+
, hedgehog >= 1.0 && < 1.6
117117
, hspec >= 2.7 && < 2.12
118-
, hspec-hedgehog >= 0.0.1.1 && < 0.2
118+
, hspec-hedgehog >= 0.0.1.1 && < 0.4
119119

120120
ghc-options: -threaded
121121
-rtsopts
@@ -126,5 +126,5 @@ test-suite trial-doctest
126126
type: exitcode-stdio-1.0
127127
hs-source-dirs: test
128128
main-is: Doctest.hs
129-
build-depends: doctest >= 0.16 && < 0.23
129+
build-depends: doctest >= 0.16 && < 0.25
130130
ghc-options: -threaded

0 commit comments

Comments
 (0)