summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-11-06 09:58:21 +0100
committerantirez <antirez@gmail.com>2010-11-06 09:58:21 +0100
commit1c14507366d0026eecc50530664b4dd58cd3eaa5 (patch)
tree846916b59897043c2c89a720356a59412fd1b226
parent19c8d5bf222da85649f877fac8c664fef948fe60 (diff)
downloadredis-1c14507366d0026eecc50530664b4dd58cd3eaa5.tar.gz
version bumped to 2.0.4, release note for this version addedv2.0.4-stable2.0.4
-rw-r--r--00-RELEASENOTES14
-rw-r--r--redis.c2
2 files changed, 13 insertions, 3 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index e3363c630..d94082e36 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -1,6 +1,16 @@
-TODO for Redis 2.0.4:
+Welcome to Redis 2.0.4
-- Merge nosave from @robey
+This release fixes two non critical bugs:
+
+ - HMGET used to crash when called against a key that was not holding
+ an hash. Fixed by Pieter Noordhuis.
+
+ - Redis will now not try to save the DB if no save points for RDB are
+ configured, when used as a non persistent cache. Thanks to Robey
+ Pointer from Twitter for providing this patch.
+
+Waiting 2.2 ...
+Salvatore
--------------------------------------------------------------------------------
diff --git a/redis.c b/redis.c
index 9d02b4524..d1685da6a 100644
--- a/redis.c
+++ b/redis.c
@@ -27,7 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#define REDIS_VERSION "2.0.3"
+#define REDIS_VERSION "2.0.4"
#include "fmacros.h"
#include "config.h"