summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-06-11 10:30:05 +0200
committerantirez <antirez@gmail.com>2014-06-11 10:30:05 +0200
commitb0f3922383c6af525db6fb8a1dae6f1457602640 (patch)
treeec56b3dfda2f2e5a226359d6731b7d4d1e9c947f
parenta3b0dbccf560dcc13f4cdec8c43ab6bca7137065 (diff)
downloadredis-b0f3922383c6af525db6fb8a1dae6f1457602640.tar.gz
Redis 2.8.11.2.8.11
-rw-r--r--00-RELEASENOTES13
-rw-r--r--src/version.h2
2 files changed, 14 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 8b4babaaa..91e662ef6 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -14,6 +14,19 @@ 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.8.11 ] Release date: 11 Jun 2014
+
+# UPGRADE URGENCY: HIGH if you use Lua scripting, LOW otherwise.
+
+* [FIX] A previous fix for Lua -> Redis numerical precision enhancement
+ introduced a new problem. In Redis 2.8.10 commands called from Lua
+ passing a string that "looks like" a very large number, may actually
+ use as argument the string converted as a float. This bug is now
+ fixed.
+* [FIX] Now commands other than *PUSH* adding elements to a list will be able
+ to awake clients blocked in a blocking POP operation.
+* [FIX] Cygwin compilation fixes.
+
--[ Redis 2.8.10 ] Release date: 5 Jun 2014
# UPGRADE URGENCY: HIGH if you use min-slaves-to-write option.
diff --git a/src/version.h b/src/version.h
index 550144bc2..f387e0c1a 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.8.10"
+#define REDIS_VERSION "2.8.11"