Skip to content

Commit f6b8801

Browse files
authored
Raise base upper bound (#70)
This allows building with GHC-9.12
1 parent 9ab3c53 commit f6b8801

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- 9.6.6
2424
- 9.8.2
2525
- 9.10.1
26+
- 9.12.1
2627

2728
steps:
2829
- uses: actions/checkout@v4
@@ -60,6 +61,8 @@ jobs:
6061
- stack-9.4.8.yaml
6162
- stack-9.6.6.yaml
6263
- stack-9.8.3.yaml
64+
- stack-9.10.3.yaml
65+
- stack-9.12.1.yaml
6366
steps:
6467
- uses: actions/checkout@v4
6568
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'

servant-hmac-auth.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ tested-with: GHC == 9.0.2
2020
GHC == 9.6.6
2121
GHC == 9.8.2
2222
GHC == 9.10.1
23+
GHC == 9.12.1
2324

2425
source-repository head
2526
type: git
2627
location: https://github.com/holmusk/servant-hmac-auth.git
2728

2829
common common-options
29-
build-depends: base >= 4.11.1.0 && < 4.21
30+
build-depends: base >= 4.11.1.0 && < 4.22
3031

3132
ghc-options: -Wall
3233
-Wincomplete-uni-patterns

stack-9.10.3.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
resolver: lts-24.16

stack-9.12.1.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
resolver: nightly-2025-10-21

0 commit comments

Comments
 (0)