Skip to content

Commit 9f3bf6b

Browse files
authored
Merge pull request #81 from haskellari/ghc-9.14
Support GHC-9.14
2 parents 84b361b + 7aed8a0 commit 9f3bf6b

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,19 @@ jobs:
4343
strategy:
4444
matrix:
4545
include:
46-
- compiler: ghc-9.12.1
46+
- compiler: ghc-9.14.1
4747
compilerKind: ghc
48-
compilerVersion: 9.12.1
48+
compilerVersion: 9.14.1
4949
setup-method: ghcup
5050
allow-failure: false
51-
- compiler: ghc-9.10.1
51+
- compiler: ghc-9.12.2
5252
compilerKind: ghc
53-
compilerVersion: 9.10.1
53+
compilerVersion: 9.12.2
54+
setup-method: ghcup
55+
allow-failure: false
56+
- compiler: ghc-9.10.2
57+
compilerKind: ghc
58+
compilerVersion: 9.10.2
5459
setup-method: ghcup
5560
allow-failure: false
5661
- compiler: ghc-9.8.4

postgresql-libpq-configure/postgresql-libpq-configure.cabal

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ tested-with:
2828
|| ==9.4.8
2929
|| ==9.6.6
3030
|| ==9.8.4
31-
|| ==9.10.1
32-
|| ==9.12.1
31+
|| ==9.10.2
32+
|| ==9.12.2
33+
|| ==9.14.1
3334

3435
build-type: Configure
3536
extra-source-files:

postgresql-libpq-pkgconfig/postgresql-libpq-pkgconfig.cabal

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ tested-with:
2828
|| ==9.4.8
2929
|| ==9.6.6
3030
|| ==9.8.4
31-
|| ==9.10.1
32-
|| ==9.12.1
31+
|| ==9.10.2
32+
|| ==9.12.2
33+
|| ==9.14.1
3334

3435
extra-source-files: CHANGELOG.md
3536

postgresql-libpq.cabal

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.4
22
name: postgresql-libpq
33
version: 0.11.0.0
4-
x-revision: 1
4+
x-revision: 2
55
synopsis: low-level binding to libpq
66
description:
77
This is a binding to libpq: the C application
@@ -33,8 +33,9 @@ tested-with:
3333
|| ==9.4.8
3434
|| ==9.6.6
3535
|| ==9.8.4
36-
|| ==9.10.1
37-
|| ==9.12.1
36+
|| ==9.10.2
37+
|| ==9.12.2
38+
|| ==9.14.1
3839

3940
extra-source-files: CHANGELOG.md
4041

@@ -73,7 +74,7 @@ library
7374
Database.PostgreSQL.LibPQ.Ptr
7475

7576
build-depends:
76-
, base >=4.12.0.0 && <4.22
77+
, base >=4.12.0.0 && <4.23
7778
, bytestring >=0.10.8.2 && <0.13
7879

7980
if !os(windows)

0 commit comments

Comments
 (0)