summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--00-RELEASENOTES16
-rw-r--r--src/version.h2
2 files changed, 17 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index b92835086..07c85e3ea 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -14,6 +14,22 @@ HIGH: There is a critical bug that may affect a subset of users. Upgrade!
CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
--------------------------------------------------------------------------------
+--[ Redis 2.6.15 ] Release date: 21 Aug 2013
+
+UPGRADE URGENCY: MODERATE, upgrade ASAP only if you experience issues related to
+ the expired keys collection algorithm, or if you use the
+ ZUNIONSTORE command.
+
+* [FIX] Improved expired keys collection algorithm. Even under heavy load keys
+ to be expired can't accumulate because of lack of CPU time.
+* [FIX] Fixed Issue #1240, ZUNIONSTORE could lead to wrong result.
+* [NEW] redis-benchmark improvements.
+* [NEW] dict.c API wrong usage detection.
+
+WARNING: redis-benchmark released with 2.6.15 features non backward compatible
+ change in the way the random arguments are specified, use the --help
+ option for more information.
+
--[ Redis 2.6.14 ] Release date: 20 Jun 2013
UPGRADE URGENCY: HIGH because of the following two issues:
diff --git a/src/version.h b/src/version.h
index 2872b9fe7..52d0b3ac2 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.6.14"
+#define REDIS_VERSION "2.6.15"