Skip to content

Commit 99e673c

Browse files
authored
Support ghc 9.8, bump dependency versions (#46)
1 parent 358cfa9 commit 99e673c

File tree

8 files changed

+26
-21
lines changed

8 files changed

+26
-21
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
cabal:
1818
- "3.10"
1919
ghc:
20-
- 8.10.7
2120
- 9.0.2
2221
- 9.2.8
23-
- 9.4.5
24-
- 9.6.2
22+
- 9.4.8
23+
- 9.6.3
24+
- 9.8.1
2525
services:
2626
postgres:
2727
image: postgres:15
@@ -60,13 +60,13 @@ jobs:
6060
os:
6161
- ubuntu-latest
6262
stack:
63-
- 2.11.1
63+
- 2.13.1
6464
stack-yaml:
65-
- stack-8.10.7.yaml
6665
- stack-9.0.2.yaml
6766
- stack-9.2.8.yaml
68-
- stack-9.4.5.yaml
69-
- stack-9.6.2.yaml
67+
- stack-9.4.8.yaml
68+
- stack-9.6.3.yaml
69+
- stack-9.8.1.yaml
7070
services:
7171
postgres:
7272
image: postgres:15

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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.5.0 - Jan 4, 2024
7+
8+
* Add support for GHC 9.6 and 9.8
9+
610
## 0.0.4.0 - Nov 2, 2022
711

812
* Add support for GHC 9.2 and 9.4
@@ -11,7 +15,7 @@ The changelog is available [on GitHub][2].
1115

1216
* Add support for GHC 8.10 and 9.0
1317
* [#30](https://github.com/Holmusk/postgresql-simple-named/issues/30):
14-
Fixes a bug with postgres-simple-named not recognising postgres JSON operators
18+
Fixes a bug with postgres-simple-named not recognising postgres JSON operators
1519

1620
## 0.0.2.0 — Sep 10, 2019
1721

postgresql-simple-named.cabal

Lines changed: 11 additions & 11 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.4.0
3+
version: 0.0.5.0
44
synopsis: Implementation of named parameters for `postgresql-simple` library
55
description:
66
Implementation of named parameters for @postgresql-simple@ library.
@@ -27,19 +27,19 @@ copyright: 2019 Holmusk
2727
category: Database, PostgreSQL
2828
build-type: Simple
2929
extra-source-files: README.md
30-
, CHANGELOG.md
31-
tested-with: GHC == 8.10.7
32-
, GHC == 9.0.2
30+
extra-doc-files: CHANGELOG.md
31+
tested-with: GHC == 9.0.2
3332
, GHC == 9.2.8
34-
, GHC == 9.4.5
35-
, GHC == 9.6.2
33+
, GHC == 9.4.8
34+
, GHC == 9.6.3
35+
, GHC == 9.8.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.19
42+
build-depends: base >= 4.11 && < 4.20
4343

4444
ghc-options: -Wall
4545
-Wincomplete-uni-patterns
@@ -74,10 +74,10 @@ library
7474
import: common-options
7575
hs-source-dirs: src
7676
exposed-modules: PgNamed
77-
build-depends: bytestring >= 0.10 && < 0.12
77+
build-depends: bytestring >= 0.10 && < 0.13
7878
, mtl >= 2.2 && < 2.4
79-
, postgresql-simple >= 0.5 && < 0.7
80-
, text >= 1.2 && < 2.1
79+
, postgresql-simple >= 0.5 && < 0.8
80+
, text >= 1.2 && < 2.2
8181

8282
test-suite postgresql-simple-named-test
8383
import: common-options
@@ -88,7 +88,7 @@ test-suite postgresql-simple-named-test
8888
build-depends: bytestring
8989
, hspec >= 2.5
9090
, postgresql-simple-named
91-
, postgresql-simple >= 0.5 && < 0.7
91+
, postgresql-simple >= 0.5 && < 0.8
9292
, resource-pool ^>= 0.2.3.2 || ^>= 0.4.0.0
9393
, transformers
9494

stack-9.4.5.yaml

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

stack-9.4.8.yaml

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

stack-9.6.2.yaml

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

stack-9.6.3.yaml

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

stack-9.8.1.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
resolver: nightly-2024-01-03

0 commit comments

Comments
 (0)