Skip to content

Commit 9fef382

Browse files
authored
Add support for GHC 9.0.2 (LTS 19.0) (#35)
1 parent 394e6ff commit 9fef382

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- ubuntu-latest
1717
cabal: [3.4]
1818
ghc:
19-
- 8.6.5
2019
- 8.8.4
2120
- 8.10.7
21+
- 9.0.2
2222
services:
2323
postgres:
2424
image: postgres:12
@@ -57,9 +57,9 @@ jobs:
5757
stack:
5858
- 2.7.3
5959
stack-yaml:
60-
- stack-8.6.5.yaml
6160
- stack-8.8.4.yaml
6261
- stack-8.10.7.yaml
62+
- stack-9.0.2.yaml
6363
services:
6464
postgres:
6565
image: postgres:12

postgresql-simple-named.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ category: Database, PostgreSQL
2828
build-type: Simple
2929
extra-doc-files: README.md
3030
, CHANGELOG.md
31-
tested-with: GHC == 8.6.5
32-
, GHC == 8.8.4
31+
tested-with: GHC == 8.8.4
3332
, GHC == 8.10.7
33+
, GHC == 9.0.2
3434

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

3939
common common-options
40-
build-depends: base >= 4.11 && < 4.15
40+
build-depends: base >= 4.11 && < 4.16
4141

4242
ghc-options: -Wall
4343
-Wincomplete-uni-patterns
@@ -84,7 +84,7 @@ test-suite postgresql-simple-named-test
8484
main-is: Spec.hs
8585

8686
build-depends: bytestring
87-
, hspec >= 2.5 && < 2.8
87+
, hspec >= 2.5
8888
, postgresql-simple-named
8989
, postgresql-simple
9090
, resource-pool ^>= 0.2.3.2

stack-8.6.5.yaml

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

stack-9.0.2.yaml

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

0 commit comments

Comments
 (0)