From 2999ce50f773fa7bd45a689dd8db522f33798b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20L=C3=B3pez?= Date: Fri, 14 Feb 2014 11:53:22 +0100 Subject: [PATCH] Update documentation for Java Arrays support in criterias --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e3dd18..4b32be3 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ class Like { } ``` -Now you can create domain objects using lists of integers, longs and strings and when you save the object it will be stored as an postgresql array: +Now you can create domain objects using lists (or arrays) of integers, longs and strings and when you save the object it will be stored as an postgresql array: ```groovy def like1 = new Like(favoriteNumbers:[5, 17, 9, 6], @@ -353,6 +353,7 @@ Collaborations are appreciated :-) Release Notes ------------- +* 0.6.7 - 14/Feb/2014 - Support Java Arrays in criterias. * 0.6.6 - 14/Feb/2014 - New criteria pgArrayIsEmptyOrContains. * 0.6.5 - 13/Feb/2014 - Fix bug deleting instances with Hstore type. Thanks to Manuel Unno Vio! * 0.6.4 - 30/Jan/2014 - Convert automatically the keys of Hstore to string.