Bump version to 1.4.3.

This commit is contained in:
Felipe Lessa 2014-07-12 00:27:23 -03:00
parent dc285e41ad
commit bfdb140e46
No known key found for this signature in database
GPG Key ID: A764D1843E966829
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
name: esqueleto name: esqueleto
version: 1.4.2 version: 1.4.3
synopsis: Type-safe EDSL for SQL queries on persistent backends. synopsis: Type-safe EDSL for SQL queries on persistent backends.
homepage: https://github.com/prowdsponsor/esqueleto homepage: https://github.com/prowdsponsor/esqueleto
license: BSD3 license: BSD3

View File

@ -258,11 +258,15 @@ class (Functor query, Applicative query, Monad query) =>
-- (Nothing) otherwise. Some RDBMSs (such as SQLite) require -- (Nothing) otherwise. Some RDBMSs (such as SQLite) require
-- at least two arguments; please refer to the appropriate -- at least two arguments; please refer to the appropriate
-- documentation. -- documentation.
--
-- /Since: 1.4.3/
coalesce :: PersistField a => [expr (Value (Maybe a))] -> expr (Value (Maybe a)) coalesce :: PersistField a => [expr (Value (Maybe a))] -> expr (Value (Maybe a))
-- | Like @coalesce@, but takes a non-nullable expression -- | Like @coalesce@, but takes a non-nullable expression
-- placed at the end of the expression list, which guarantees -- placed at the end of the expression list, which guarantees
-- a non-NULL result. -- a non-NULL result.
--
-- /Since: 1.4.3/
coalesceDefault :: PersistField a => [expr (Value (Maybe a))] -> expr (Value a) -> expr (Value a) coalesceDefault :: PersistField a => [expr (Value (Maybe a))] -> expr (Value a) -> expr (Value a)
-- | @LIKE@ operator. -- | @LIKE@ operator.