summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2012-02-02 15:29:24 +0100
committerantirez <antirez@gmail.com>2012-02-02 15:29:24 +0100
commitbad380bdb51dc992ff65c59a12b9fa35aad05bc6 (patch)
tree229916c71d30cb300bc928420c282465af13f376
parent0b73cbb69fd1194bcf8b6d6a13d0ebe3e1690c6c (diff)
downloadredis-bad380bdb51dc992ff65c59a12b9fa35aad05bc6.tar.gz
Redis 2.4.72.4.7
-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 141faaae4..8c20db295 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -18,6 +18,19 @@ to modify your program in order to use Redis 2.4.
CHANGELOG
---------
+What's new in Redis 2.4.7
+=========================
+
+UPGRADE URGENCY: low/moderate if you don't experience any of the fixed problems.
+
+* [BUGFIX] Fixed false positive in issue #141 regression test.
+* [BUGFIX] Slave should not expire keys when loading an RDB after a SYNC.
+* [BUGFIX] Don't increment stats for key misses / hits when key is written.
+* [BUGFIX] sds.c library now don't allocate more than 1MB ahead.
+* 32 bit instances without a maxmemory set now get a default limit of 3.5GB with
+ maxmemory-policy set to noeviction.
+* Better crash report on crash (containing current client and command arguments).
+
What's new in Redis 2.4.6
=========================
diff --git a/src/version.h b/src/version.h
index 77e0918cd..d33deecb4 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.4.6"
+#define REDIS_VERSION "2.4.7"