Skip to content

Commit

Permalink
Support ghc 9.8, bump dependency versions (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhrcek authored Jan 4, 2024
1 parent 358cfa9 commit 99e673c
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 21 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
cabal:
- "3.10"
ghc:
- 8.10.7
- 9.0.2
- 9.2.8
- 9.4.5
- 9.6.2
- 9.4.8
- 9.6.3
- 9.8.1
services:
postgres:
image: postgres:15
Expand Down Expand Up @@ -60,13 +60,13 @@ jobs:
os:
- ubuntu-latest
stack:
- 2.11.1
- 2.13.1
stack-yaml:
- stack-8.10.7.yaml
- stack-9.0.2.yaml
- stack-9.2.8.yaml
- stack-9.4.5.yaml
- stack-9.6.2.yaml
- stack-9.4.8.yaml
- stack-9.6.3.yaml
- stack-9.8.1.yaml
services:
postgres:
image: postgres:15
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
`postgresql-simple-named` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## 0.0.5.0 - Jan 4, 2024

* Add support for GHC 9.6 and 9.8

## 0.0.4.0 - Nov 2, 2022

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

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

## 0.0.2.0 — Sep 10, 2019

Expand Down
22 changes: 11 additions & 11 deletions postgresql-simple-named.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: postgresql-simple-named
version: 0.0.4.0
version: 0.0.5.0
synopsis: Implementation of named parameters for `postgresql-simple` library
description:
Implementation of named parameters for @postgresql-simple@ library.
Expand All @@ -27,19 +27,19 @@ copyright: 2019 Holmusk
category: Database, PostgreSQL
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.10.7
, GHC == 9.0.2
extra-doc-files: CHANGELOG.md
tested-with: GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.5
, GHC == 9.6.2
, GHC == 9.4.8
, GHC == 9.6.3
, GHC == 9.8.1

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

common common-options
build-depends: base >= 4.11 && < 4.19
build-depends: base >= 4.11 && < 4.20

ghc-options: -Wall
-Wincomplete-uni-patterns
Expand Down Expand Up @@ -74,10 +74,10 @@ library
import: common-options
hs-source-dirs: src
exposed-modules: PgNamed
build-depends: bytestring >= 0.10 && < 0.12
build-depends: bytestring >= 0.10 && < 0.13
, mtl >= 2.2 && < 2.4
, postgresql-simple >= 0.5 && < 0.7
, text >= 1.2 && < 2.1
, postgresql-simple >= 0.5 && < 0.8
, text >= 1.2 && < 2.2

test-suite postgresql-simple-named-test
import: common-options
Expand All @@ -88,7 +88,7 @@ test-suite postgresql-simple-named-test
build-depends: bytestring
, hspec >= 2.5
, postgresql-simple-named
, postgresql-simple >= 0.5 && < 0.7
, postgresql-simple >= 0.5 && < 0.8
, resource-pool ^>= 0.2.3.2 || ^>= 0.4.0.0
, transformers

Expand Down
1 change: 0 additions & 1 deletion stack-9.4.5.yaml

This file was deleted.

1 change: 1 addition & 0 deletions stack-9.4.8.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolver: lts-21.25
1 change: 0 additions & 1 deletion stack-9.6.2.yaml

This file was deleted.

1 change: 1 addition & 0 deletions stack-9.6.3.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolver: lts-22.4
1 change: 1 addition & 0 deletions stack-9.8.1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resolver: nightly-2024-01-03

0 comments on commit 99e673c

Please sign in to comment.