Skip to content

Commit f6a51dc

Browse files
Support GHC 9.12 (#51)
1 parent 7f7a4b9 commit f6a51dc

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
os:
1616
- ubuntu-latest
1717
cabal:
18-
- "3.10"
18+
- 3.16.0.0
1919
ghc:
20-
- 9.2.8
2120
- 9.4.8
2221
- 9.6.7
2322
- 9.8.4
2423
- 9.10.2
24+
- 9.12.2
2525
services:
2626
postgres:
2727
image: postgres:15
@@ -60,13 +60,13 @@ jobs:
6060
os:
6161
- ubuntu-latest
6262
stack:
63-
- 2.15.5
63+
- 3.7.1
6464
stack-yaml:
65-
- stack-9.2.8.yaml
6665
- stack-9.4.8.yaml
6766
- stack-9.6.7.yaml
6867
- stack-9.8.4.yaml
6968
- stack-9.10.2.yaml
69+
- stack-9.12.2.yaml
7070
services:
7171
postgres:
7272
image: postgres:15

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
`postgresql-simple-named` uses [PVP Versioning][1].
44
The changelog is available [on GitHub][2].
55

6+
## 0.0.6.0 - Aug 20, 2025
7+
8+
* Add support for GHC 9.12
9+
610
## 0.0.5.0 - Jan 4, 2024
711

812
* Add support for GHC 9.6 and 9.8

postgresql-simple-named.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: postgresql-simple-named
3-
version: 0.0.5.0
3+
version: 0.0.6.0
44
synopsis: Implementation of named parameters for `postgresql-simple` library
55
description:
66
Implementation of named parameters for @postgresql-simple@ library.
@@ -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.2.8
32-
, GHC == 9.4.8
31+
tested-with: GHC == 9.4.8
3332
, GHC == 9.6.7
3433
, GHC == 9.8.4
3534
, GHC == 9.10.2
35+
, GHC == 9.12.2
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.21
42+
build-depends: base >= 4.11 && < 4.22
4343

4444
ghc-options: -Wall
4545
-Wincomplete-uni-patterns
@@ -89,7 +89,7 @@ test-suite postgresql-simple-named-test
8989
, hspec >= 2.5
9090
, postgresql-simple-named
9191
, postgresql-simple >= 0.5 && < 0.8
92-
, resource-pool ^>= 0.2.3.2 || ^>= 0.4.0.0
92+
, resource-pool ^>= 0.2.3.2 || >=0.4.0.0 && <0.6
9393
, transformers
9494

9595
ghc-options: -threaded -rtsopts -with-rtsopts=-N

stack-9.12.2.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
resolver: nightly-2025-08-20
2+

stack-9.2.8.yaml

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

0 commit comments

Comments
 (0)