Skip to content

Commit 9b1fd12

Browse files
authored
Prepare for 0.0.4.0 release (#39)
1 parent 67542c7 commit 9b1fd12

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- 8.10.7
2020
- 9.0.2
2121
- 9.2.4
22+
- 9.4.2
2223
services:
2324
postgres:
2425
image: postgres:15

CHANGELOG.md

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

6+
## 0.0.4.0 - Nov 2, 2022
7+
8+
* Add support for GHC 9.2 and 9.4
9+
610
## 0.0.3.0 - Jun 1, 2022
711

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
![Logo](https://user-images.githubusercontent.com/4276606/68105647-408b7c00-fef0-11e9-8d70-d3fbf314a647.png)
44

5-
[![Build status](https://img.shields.io/travis/Holmusk/postgresql-simple-named.svg?logo=travis)](https://travis-ci.org/Holmusk/postgresql-simple-named)
5+
[![Build status](https://github.com/Holmusk/postgresql-simple-named/actions/workflows/haskell-ci.yml/badge.svg)](https://github.com/Holmusk/postgresql-simple-named/actions/workflows/haskell-ci.yml)
66
[![Hackage](https://img.shields.io/hackage/v/postgresql-simple-named.svg?logo=haskell)](https://hackage.haskell.org/package/postgresql-simple-named)
77
[![Stackage Lts](http://stackage.org/package/postgresql-simple-named/badge/lts)](http://stackage.org/lts/package/postgresql-simple-named)
88
[![Stackage Nightly](http://stackage.org/package/postgresql-simple-named/badge/nightly)](http://stackage.org/nightly/package/postgresql-simple-named)
99
[![MPL-2.0 license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](LICENSE)
1010

1111
This library introduces the implementation of named parameters for the
12-
[`postgresql-simple`][pgs] library. `postgresql-simple-named` is considered to
12+
[`postgresql-simple`][pgs] library. `postgresql-simple-named` is designed to
1313
be used along with the [`postgresql-simple`][pgs] library, so you could refer
1414
there for the original documentation of primary functions. This package solves
1515
exclusively one particular problem — gives the ability to use named parameters

postgresql-simple-named.cabal

Lines changed: 3 additions & 2 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.3.0
3+
version: 0.0.4.0
44
synopsis: Implementation of named parameters for `postgresql-simple` library
55
description:
66
Implementation of named parameters for @postgresql-simple@ library.
@@ -31,13 +31,14 @@ extra-source-files: README.md
3131
tested-with: GHC == 8.10.7
3232
, GHC == 9.0.2
3333
, GHC == 9.2.4
34+
, GHC == 9.4.2
3435

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

3940
common common-options
40-
build-depends: base >= 4.11 && < 4.17
41+
build-depends: base >= 4.11 && < 4.18
4142

4243
ghc-options: -Wall
4344
-Wincomplete-uni-patterns

stack-9.0.2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
resolver: lts-19.30
1+
resolver: lts-19.31

0 commit comments

Comments
 (0)