From 9ed19089cd0b1d6d44441a4ed67e3a918bbfa384 Mon Sep 17 00:00:00 2001 From: Philipp Bogensberger Date: Tue, 10 Feb 2015 14:53:48 +0100 Subject: [PATCH] prepare release 0.47.1 --- CHANGES.txt | 3 +++ core/src/main/java/io/crate/Version.java | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index a28dccfbda5c..8b24a7aae374 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,6 +5,9 @@ Changes for Crate Unreleased ========== +2015/02/10 0.47.1 +================= + - Improved performance of queries that use generic scalar functions (like equals comparison on arrays) diff --git a/core/src/main/java/io/crate/Version.java b/core/src/main/java/io/crate/Version.java index 95a8430de4e6..8cc23bf46165 100644 --- a/core/src/main/java/io/crate/Version.java +++ b/core/src/main/java/io/crate/Version.java @@ -34,8 +34,8 @@ public class Version { // the (internal) format of the id is there so we can easily do after/before checks on the id - public static final boolean SNAPSHOT = true; - public static final Version CURRENT = new Version(470099, SNAPSHOT, org.elasticsearch.Version.V_1_4_2); + public static final boolean SNAPSHOT = false; + public static final Version CURRENT = new Version(470199, SNAPSHOT, org.elasticsearch.Version.V_1_4_2); static { // safe-guard that we don't release a version with DEBUG_MODE set to true