diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 552b5070..137bd63e 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 7463c48c..5dd0ca37 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.2.0" +#define REDIS_VERSION "2.2.1"