Skip to content

Commit

Permalink
version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
joelmccracken committed Mar 17, 2023
1 parent 3476547 commit daec0db
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion esqueleto.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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.
.
Expand Down
4 changes: 2 additions & 2 deletions src/Database/Esqueleto/PostgreSQL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -556,7 +556,7 @@ withMaterialized query = do
-- from cte
-- @
--
-- /Since: 3.5.8.3/
-- /Since: 3.5.10.0/
withRecursiveMaterialized
:: ( ToAlias a
, ToAliasReference a
Expand Down

0 comments on commit daec0db

Please sign in to comment.