diff --git a/00-RELEASENOTES b/00-RELEASENOTES index e7f91056a..5a2dfceba 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -12,6 +12,12 @@ for 2.0. CHANGELOG --------- +What's new in Redis 2.2.13 +========================== + +* [BUGFIX] Fixed issue 593 (BRPOPLPUSH related crash). +* [BUGFIX] Fixed an issue with the networking layer that may prevent Redis from sending the whole reply back to client under extreme conditions. + What's new in Redis 2.2.12 ========================== diff --git a/src/version.h b/src/version.h index f43af6e62..d3c430a25 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.2.12" +#define REDIS_VERSION "2.2.13"