postgresql-simple-named 0.0.3.0 → 0.0.4.0
raw patch · 3 files changed
+16/−11 lines, 3 filesdep ~basedep ~bytestringdep ~mtlPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, bytestring, mtl, text
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−1
- README.md +3/−3
- postgresql-simple-named.cabal +8/−7
CHANGELOG.md view
@@ -3,9 +3,13 @@ `postgresql-simple-named` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 0.0.4.0 - Nov 2, 2022++* Add support for GHC 9.2 and 9.4+ ## 0.0.3.0 - Jun 1, 2022 -* Adds support for GHC 8.10 and 9.0+* 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
README.md view
@@ -2,14 +2,14 @@  -[](https://travis-ci.org/Holmusk/postgresql-simple-named)+[](https://github.com/Holmusk/postgresql-simple-named/actions/workflows/haskell-ci.yml) [](https://hackage.haskell.org/package/postgresql-simple-named) [](http://stackage.org/lts/package/postgresql-simple-named) [](http://stackage.org/nightly/package/postgresql-simple-named) [](LICENSE) This library introduces the implementation of named parameters for the-[`postgresql-simple`][pgs] library. `postgresql-simple-named` is considered to+[`postgresql-simple`][pgs] library. `postgresql-simple-named` is designed to be used along with the [`postgresql-simple`][pgs] library, so you could refer there for the original documentation of primary functions. This package solves exclusively one particular problem — gives the ability to use named parameters@@ -76,7 +76,7 @@ * Run DB in a Docker in a separate terminal window using command: ```bash- docker run -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres:12+ docker run -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres:15 ``` * Run tests using `cabal new-test` or `stack test`
postgresql-simple-named.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: postgresql-simple-named-version: 0.0.3.0+version: 0.0.4.0 synopsis: Implementation of named parameters for `postgresql-simple` library description: Implementation of named parameters for @postgresql-simple@ library.@@ -28,16 +28,17 @@ build-type: Simple extra-source-files: README.md , CHANGELOG.md-tested-with: GHC == 8.8.4- , GHC == 8.10.7+tested-with: GHC == 8.10.7 , GHC == 9.0.2+ , GHC == 9.2.4+ , GHC == 9.4.2 source-repository head type: git location: https://github.com/Holmusk/postgresql-simple-named.git common common-options- build-depends: base >= 4.11 && < 4.16+ build-depends: base >= 4.11 && < 4.18 ghc-options: -Wall -Wincomplete-uni-patterns@@ -72,10 +73,10 @@ import: common-options hs-source-dirs: src exposed-modules: PgNamed- build-depends: bytestring ^>= 0.10.8- , mtl ^>= 2.2+ build-depends: bytestring >= 0.10 && < 0.12+ , mtl >= 2.2 && < 2.4 , postgresql-simple >= 0.5 && < 0.7- , text ^>= 1.2+ , text >= 1.2 && < 2.1 test-suite postgresql-simple-named-test import: common-options