diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index c0d3e5b..e491176 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -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 @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index c8a3881..36d7c09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/postgresql-simple-named.cabal b/postgresql-simple-named.cabal index 785acb7..85c6c6c 100644 --- a/postgresql-simple-named.cabal +++ b/postgresql-simple-named.cabal @@ -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. @@ -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 @@ -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 @@ -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 diff --git a/stack-9.4.5.yaml b/stack-9.4.5.yaml deleted file mode 100644 index bb875e4..0000000 --- a/stack-9.4.5.yaml +++ /dev/null @@ -1 +0,0 @@ -resolver: lts-21.0 diff --git a/stack-9.4.8.yaml b/stack-9.4.8.yaml new file mode 100644 index 0000000..377040a --- /dev/null +++ b/stack-9.4.8.yaml @@ -0,0 +1 @@ +resolver: lts-21.25 diff --git a/stack-9.6.2.yaml b/stack-9.6.2.yaml deleted file mode 100644 index 4ad7d90..0000000 --- a/stack-9.6.2.yaml +++ /dev/null @@ -1 +0,0 @@ -resolver: nightly-2023-08-02 diff --git a/stack-9.6.3.yaml b/stack-9.6.3.yaml new file mode 100644 index 0000000..2d0dc93 --- /dev/null +++ b/stack-9.6.3.yaml @@ -0,0 +1 @@ +resolver: lts-22.4 diff --git a/stack-9.8.1.yaml b/stack-9.8.1.yaml new file mode 100644 index 0000000..aa6485b --- /dev/null +++ b/stack-9.8.1.yaml @@ -0,0 +1 @@ +resolver: nightly-2024-01-03