From 10a74b0dc7e792f3bc76deda4c1d27540c2f0cfa Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Sun, 21 Nov 2021 12:19:47 +0000 Subject: [PATCH 1/2] Release 1.2.1.0 --- Changelog.md | 8 ++++++++ rel8.cabal | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 6363584a..5c74bbaf 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,11 @@ +# 1.2.1.0 (2021-11-21) + +## New features + +* `castTable` has been added, which casts all columns selected from in `Query` according to the types of columns. This can occasionally be useful when using `many`/`some` on older PostgreSQL versions. ([#137](https://github.com/circuithub/rel8/pull/137)) + +* Added `<:`, `<=:`, `>:`, `>=:`, `greatest` and `least`, which sort all columns in a table lexicographically. These operators are like the `<.` operators which operate on `Expr`s, but the `<:` operate on entire tables. ([#139](https://github.com/circuithub/rel8/pull/139)) + # 1.2.0.0 (2021-10-22) ## New features diff --git a/rel8.cabal b/rel8.cabal index 72e79e13..5cb32d90 100644 --- a/rel8.cabal +++ b/rel8.cabal @@ -1,6 +1,6 @@ cabal-version: 2.0 name: rel8 -version: 1.2.0.0 +version: 1.2.1.0 synopsis: Hey! Hey! Can u rel8? license: BSD3 license-file: LICENSE From cdc8cd9cdb57445fbb97db17ba0eb3684b22eb89 Mon Sep 17 00:00:00 2001 From: Ollie Charles Date: Sun, 21 Nov 2021 13:42:07 +0000 Subject: [PATCH 2/2] Update Changelog.md --- Changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Changelog.md b/Changelog.md index 5c74bbaf..60c90372 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,10 @@ * Added `<:`, `<=:`, `>:`, `>=:`, `greatest` and `least`, which sort all columns in a table lexicographically. These operators are like the `<.` operators which operate on `Expr`s, but the `<:` operate on entire tables. ([#139](https://github.com/circuithub/rel8/pull/139)) +## Other + +* Support opaleye-0.8 ([#142](https://github.com/circuithub/rel8/pull/142)) + # 1.2.0.0 (2021-10-22) ## New features