Skip to content

Commit 0da9748

Browse files
Support GHC 9.10 (#49)
1 parent 2ef0d37 commit 0da9748

File tree

6 files changed

+11
-14
lines changed

6 files changed

+11
-14
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
cabal:
1818
- "3.10"
1919
ghc:
20-
- 9.0.2
2120
- 9.2.8
2221
- 9.4.8
23-
- 9.6.4
22+
- 9.6.6
2423
- 9.8.2
24+
- 9.10.1
2525
services:
2626
postgres:
2727
image: postgres:15
@@ -40,7 +40,7 @@ jobs:
4040
ghc-version: ${{ matrix.ghc }}
4141
cabal-version: ${{ matrix.cabal }}
4242

43-
- uses: actions/cache@v3
43+
- uses: actions/cache@v4
4444
name: Cache ~/.cabal/store
4545
with:
4646
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
@@ -62,10 +62,9 @@ jobs:
6262
stack:
6363
- 2.15.5
6464
stack-yaml:
65-
- stack-9.0.2.yaml
6665
- stack-9.2.8.yaml
6766
- stack-9.4.8.yaml
68-
- stack-9.6.4.yaml
67+
- stack-9.6.6.yaml
6968
- stack-9.8.2.yaml
7069
services:
7170
postgres:
@@ -76,9 +75,9 @@ jobs:
7675
- 5432:5432
7776
steps:
7877
- name: Checkout repository
79-
uses: actions/checkout@v2
78+
uses: actions/checkout@v4
8079

81-
- uses: haskell/actions/setup@v2
80+
- uses: haskell-actions/setup@v2
8281
name: Setup Haskell Stack
8382
with:
8483
stack-version: ${{ matrix.stack }}

postgresql-simple-named.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ category: Database, PostgreSQL
2828
build-type: Simple
2929
extra-source-files: README.md
3030
extra-doc-files: CHANGELOG.md
31-
tested-with: GHC == 9.0.2
32-
, GHC == 9.2.8
31+
tested-with: GHC == 9.2.8
3332
, GHC == 9.4.8
34-
, GHC == 9.6.4
33+
, GHC == 9.6.6
3534
, GHC == 9.8.2
35+
, GHC == 9.10.1
3636

3737
source-repository head
3838
type: git
3939
location: https://github.com/Holmusk/postgresql-simple-named.git
4040

4141
common common-options
42-
build-depends: base >= 4.11 && < 4.20
42+
build-depends: base >= 4.11 && < 4.21
4343

4444
ghc-options: -Wall
4545
-Wincomplete-uni-patterns

stack-8.10.7.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

stack-9.0.2.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

stack-9.6.4.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

stack-9.6.6.yaml

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

0 commit comments

Comments
 (0)