summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-05-25 12:29:23 +0200
committerantirez <antirez@gmail.com>2011-05-25 12:29:23 +0200
commit10e987c5fdb398a806f135a8c09888c8e3bf6840 (patch)
treebfb2efc8bbb3f2c224d634c579023a5e52052dc6
parentcc958ccf42e0e56d0514bb2b4ba3c4295b0c87e6 (diff)
parentec279203df0bc6ddc981394d7d61bceff884e681 (diff)
downloadredis-10e987c5fdb398a806f135a8c09888c8e3bf6840.tar.gz
Merge branch '2.2' of github.com:antirez/redis into 2.2
-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 3c3a8d6f4..b42f16be8 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -12,6 +12,19 @@ for 2.0.
CHANGELOG
---------
+What's new in Redis 2.2.8
+=========================
+
+* A new form of dict.c (hash table implementation) iterator that performs less
+ copy-on-write of pages, introduced in Redis 2.2.7, caused ZINTERSTORE,
+ ZUNIONSTORE, SINTER, SINTERSTORE commands to behave in the wrong way.
+ This bug is now fixed.
+* Print version info before running the test with 'make test'. This is mainly
+ useful for the Continuous Integration system we run.
+* Fix for DEBUG DIGEST, key may expire on lookup, producing the wrong result.
+* Replication with expire test modified to produce no or less false failures.
+* Fixed Z*STORE when dealing with intsets, regression test added.
+
What's new in Redis 2.2.7
=========================
diff --git a/src/version.h b/src/version.h
index d7628d267..e44ee94c7 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.2.7"
+#define REDIS_VERSION "2.2.8"