From daec0dbd3e62c306a9d7f2290569e44fe71a0a22 Mon Sep 17 00:00:00 2001 From: Joel McCracken Date: Tue, 7 Mar 2023 23:45:19 -0500 Subject: [PATCH] version bumps --- changelog.md | 6 ++++++ esqueleto.cabal | 2 +- src/Database/Esqueleto/PostgreSQL.hs | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 642bb288e..51c9f51da 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,9 @@ +3.5.10.0 +======== +- @JoelMcCracken + - [#354](https://github.com/bitemyapp/esqueleto/pull/354) + - Add `withMaterialized`, `withRecursiveMaterialized` to the PostgreSQL module + 3.5.9.0 ======= - @9999years diff --git a/esqueleto.cabal b/esqueleto.cabal index 56c96681f..f15f3b5e0 100644 --- a/esqueleto.cabal +++ b/esqueleto.cabal @@ -2,7 +2,7 @@ cabal-version: 1.12 name: esqueleto -version: 3.5.9.0 +version: 3.5.10.0 synopsis: Type-safe EDSL for SQL queries on persistent backends. description: @esqueleto@ is a bare bones, type-safe EDSL for SQL queries that works with unmodified @persistent@ SQL backends. Its language closely resembles SQL, so you don't have to learn new concepts, just new syntax, and it's fairly easy to predict the generated SQL and optimize it for your backend. Most kinds of errors committed when writing SQL are caught as compile-time errors---although it is possible to write type-checked @esqueleto@ queries that fail at runtime. . diff --git a/src/Database/Esqueleto/PostgreSQL.hs b/src/Database/Esqueleto/PostgreSQL.hs index 972a86040..8042a1312 100644 --- a/src/Database/Esqueleto/PostgreSQL.hs +++ b/src/Database/Esqueleto/PostgreSQL.hs @@ -509,7 +509,7 @@ forShareOf lockableEntities onLockedBehavior = -- For more information on materialized CTEs, see the PostgreSQL manual documentation on -- [Common Table Expression Materialization](https://www.postgresql.org/docs/14/queries-with.html#id-1.5.6.12.7). -- --- /Since: 3.5.8.3/ +-- /Since: 3.5.10.0/ withMaterialized :: ( ToAlias a , ToAliasReference a , SqlSelect a r @@ -556,7 +556,7 @@ withMaterialized query = do -- from cte -- @ -- --- /Since: 3.5.8.3/ +-- /Since: 3.5.10.0/ withRecursiveMaterialized :: ( ToAlias a , ToAliasReference a