diff options
author | antirez <antirez@gmail.com> | 2011-02-23 15:48:24 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2011-02-23 15:48:24 +0100 |
commit | 4e4b3b943c4cd14cf1c257a4b3d7a38b6fb396ca (patch) | |
tree | 17568f5e6b4899cc132a977a3e6578714af08676 | |
parent | 61e254767591198d0cc191c043509d5b573cd526 (diff) | |
download | redis-4e4b3b943c4cd14cf1c257a4b3d7a38b6fb396ca.tar.gz |
Redis 2.1.1, release notes updated2.2.1
-rw-r--r-- | 00-RELEASENOTES | 9 | ||||
-rw-r--r-- | src/version.h | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 552b5070a..137bd63e3 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -12,6 +12,15 @@ for 2.0. CHANGELOG --------- +What's new in Redis 2.2.1 +========================= + +Redis 2.2.1 is a bugfix release. Changelog: + +* Fixed an SPOP crash. When using SPOP in a MULTI/EXEC block there was a problem + introduced in the latest release when fixing an SPOP replication/AOF related + bug. + What's new in Redis 2.2.0 final =============================== diff --git a/src/version.h b/src/version.h index 7463c48ca..5dd0ca37f 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.2.0" +#define REDIS_VERSION "2.2.1" |