Skip to content

Commit 66ba869

Browse files
Support GHC 9.12 (#63)
and bump bounds on `containers` as well. Bump all Stack and GHC versions to their latest minors.
1 parent 6c05cb2 commit 66ba869

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

.ci/cabal.project.local-upper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ allow-newer:
4040
containers,
4141

4242
constraints:
43-
containers == 0.7,
43+
containers == 0.8,

.ci/stack-9.10.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
resolver: nightly-2025-03-06
2+
ghc-options:
3+
"$locals": -Werror -Wall -Wcompat -Wno-name-shadowing

.ci/stack-9.6.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
resolver: lts-22.23
1+
resolver: lts-22.43
22
ghc-options:
33
"$locals": -Werror -Wall -Wcompat -Wno-name-shadowing

.ci/stack-9.8.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
resolver: nightly-2024-05-31
1+
resolver: lts-23.11
22
ghc-options:
33
"$locals": -Werror -Wall -Wcompat -Wno-name-shadowing

.github/workflows/ci.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
# TODO: "8.0", "8.2", "8.4", "8.6"
20-
ghc: ["8.8", "8.10", "9.0", "9.2", "9.4", "9.6", "9.8"]
20+
ghc: ["8.8", "8.10", "9.0", "9.2", "9.4", "9.6", "9.8", "9.10"]
2121
fail-fast: false
2222
steps:
2323
- name: Checkout
@@ -86,15 +86,16 @@ jobs:
8686
- "9.0.2"
8787
- "9.2.8"
8888
- "9.4.8"
89-
- "9.6.5"
90-
- "9.8.2"
89+
- "9.6.6"
90+
- "9.8.4"
9191
- "9.10.1"
92+
- "9.12.1"
9293
project-variant: [""]
9394
include:
9495
- ghc: 8.0.2
9596
project-variant: -lower
96-
# - ghc: 9.10.1
97-
# project-variant: -upper
97+
- ghc: 9.12.1
98+
project-variant: -upper
9899

99100
fail-fast: false
100101
steps:

docopt.cabal

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ tested-with:
1818
GHC == 9.0.2,
1919
GHC == 9.2.8,
2020
GHC == 9.4.8,
21-
GHC == 9.6.5,
22-
GHC == 9.8.2,
23-
GHC == 9.10.1
21+
GHC == 9.6.6,
22+
GHC == 9.8.4,
23+
GHC == 9.10.1,
24+
GHC == 9.12.1
2425

2526
category: Console
2627

@@ -43,7 +44,7 @@ source-repository head
4344
source-repository this
4445
type: git
4546
location: https://github.com/docopt/docopt.hs.git
46-
tag: v0.7.0.8+r1
47+
tag: v0.7.0.8+r2
4748

4849
library
4950
exposed-modules: System.Console.Docopt.NoTH
@@ -60,8 +61,8 @@ library
6061

6162
build-depends: base >= 4.9 && < 5.0,
6263
parsec >= 3.1.14 && < 3.2,
63-
containers >= 0.6.2 && < 0.8,
64-
template-haskell >= 2.11.0 && < 2.23
64+
containers >= 0.6.2 && < 0.9,
65+
template-haskell >= 2.11.0 && < 2.24
6566

6667
ghc-options: -Wall -Wno-name-shadowing
6768

0 commit comments

Comments
 (0)