Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,19 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.1
- compiler: ghc-9.14.1
compilerKind: ghc
compilerVersion: 9.12.1
compilerVersion: 9.14.1
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.10.1
- compiler: ghc-9.12.2
compilerKind: ghc
compilerVersion: 9.10.1
compilerVersion: 9.12.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.10.2
compilerKind: ghc
compilerVersion: 9.10.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.8.4
Expand Down
5 changes: 3 additions & 2 deletions postgresql-libpq-configure/postgresql-libpq-configure.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ tested-with:
|| ==9.4.8
|| ==9.6.6
|| ==9.8.4
|| ==9.10.1
|| ==9.12.1
|| ==9.10.2
|| ==9.12.2
|| ==9.14.1

build-type: Configure
extra-source-files:
Expand Down
5 changes: 3 additions & 2 deletions postgresql-libpq-pkgconfig/postgresql-libpq-pkgconfig.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ tested-with:
|| ==9.4.8
|| ==9.6.6
|| ==9.8.4
|| ==9.10.1
|| ==9.12.1
|| ==9.10.2
|| ==9.12.2
|| ==9.14.1

extra-source-files: CHANGELOG.md

Expand Down
9 changes: 5 additions & 4 deletions postgresql-libpq.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.4
name: postgresql-libpq
version: 0.11.0.0
x-revision: 1
x-revision: 2
synopsis: low-level binding to libpq
description:
This is a binding to libpq: the C application
Expand Down Expand Up @@ -33,8 +33,9 @@ tested-with:
|| ==9.4.8
|| ==9.6.6
|| ==9.8.4
|| ==9.10.1
|| ==9.12.1
|| ==9.10.2
|| ==9.12.2
|| ==9.14.1

extra-source-files: CHANGELOG.md

Expand Down Expand Up @@ -73,7 +74,7 @@ library
Database.PostgreSQL.LibPQ.Ptr

build-depends:
, base >=4.12.0.0 && <4.22
, base >=4.12.0.0 && <4.23
, bytestring >=0.10.8.2 && <0.13

if !os(windows)
Expand Down
Loading