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
version: 1.4.2
version: 1.4.3
synopsis: Type-safe EDSL for SQL queries on persistent backends.
homepage: https://github.com/prowdsponsor/esqueleto
license: BSD3

View File

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