Skip to content

Commit

Permalink
Prepare 0.0.2.0 release (#50)
Browse files Browse the repository at this point in the history
* Bump version to 0.0.2.0

* Update Changelog

* Fix 'time' bound

* Restrict cabal-install versions
  • Loading branch information
tchoutri authored Aug 28, 2022
1 parent 51d8fef commit 1578603
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
cabal: ["3.4.0.0", "3.6.2.0", "3.8.1.0"]
cabal: ["3.8.1.0"]
ghc: ["8.8.4", "8.10.7", "9.0.2", "9.2.4"]
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Revision history for Entity

## 0.0.2.0 -- YYYY-mm-dd
## 0.0.2.0 -- 2022-08-27

This is an experimental release

* Add `queryOne_`, which takes no params and returns 0 or 1 results.
* Add `FieldModifiers` deriving option, which takes multiple modifiers:
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,7 @@ extra-deps:
- pg-entity-0.0.1.0
```

The following GHC versions are supported:

* 8.8
* 8.10
* 9.0
* [List of supported GHC versions](https://github.com/tchoutri/pg-entity/blob/main/pg-entity.cabal#L16)

## Documentation

Expand Down
12 changes: 6 additions & 6 deletions pg-entity.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description:
A PostgreSQL layer to safely expand your SQL queries with a lightweight eDSL.
Read the tutorial at https://tchoutri.github.io/pg-entity/Tutorial

version: 0.0.1.0
version: 0.0.2.0
homepage: https://tchoutri.github.io/pg-entity
bug-reports: https://github.com/tchoutri/pg-entity/issues
author: Théophile Choutri
Expand Down Expand Up @@ -85,22 +85,22 @@ library
hs-source-dirs: src
build-depends:
, base >=4.12 && <=4.18
, bytestring ^>=0.10
, bytestring ^>=0.11
, colourista ^>=0.1
, exceptions ^>=0.10
, monad-control ^>=1.0
, parsec ^>=3.1.14.0
, parsec ^>=3.1
, pg-transact ^>=0.3
, postgresql-simple ^>=0.6
, resource-pool ^>=0.3
, safe-exceptions ^>=0.1
, template-haskell >=2.15.0.0 && <=2.18.0.0
, text ^>=1.2
, text ^>=2.0
, text-display ^>=0.0
, text-manipulate ^>=0.3
, time ^>=1.9
, time ^>=1.12
, uuid ^>=1.3
, vector ^>=0.12
, vector ^>=0.13

if !flag(prod)
cpp-options: -DPROD
Expand Down

0 comments on commit 1578603

Please sign in to comment.