diff --git a/Redis on Windows Release Notes.md b/Redis on Windows Release Notes.md index 8554800c0ee..104a174c4ca 100644 --- a/Redis on Windows Release Notes.md +++ b/Redis on Windows Release Notes.md @@ -1,5 +1,9 @@ MSOpenTech Redis on Windows 2.8 Release Notes ============================================= +--[ Redis on Windows 2.8.2401 ] Release date: Jun 21 2016 + + - [PR] Fixed pointer overflow crash when using bgsave under rare circumstances. + --[ Redis on Windows 2.8.2400 ] Release date: Jan 21 2016 - Merged tag 2.8.24 from antirez/2.8 diff --git a/appveyor.yml b/appveyor.yml index e9764070caa..07438d41736 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 2.8.2104.{build} +version: 2.8.2401.{build} branches: # whitelist diff --git a/msvs/msi/RedisMsi/Product.wxs b/msvs/msi/RedisMsi/Product.wxs index 182cd65f192..227ef46575f 100644 --- a/msvs/msi/RedisMsi/Product.wxs +++ b/msvs/msi/RedisMsi/Product.wxs @@ -21,7 +21,7 @@ redis-64 Redis 64-bit - 2.8.2400 + 2.8.2401 Alexis Campailla, Enrico Giordani, Jonathan Pickett Microsoft Open Technologies, Inc. A porting of Redis on Windows 64-bit. diff --git a/msvs/setups/nuget/Redis.nuspec b/msvs/setups/nuget/Redis.nuspec index b8a418a6407..9634e68a99f 100644 --- a/msvs/setups/nuget/Redis.nuspec +++ b/msvs/setups/nuget/Redis.nuspec @@ -3,7 +3,7 @@ redis-64 Redis 64-bit - 2.8.2400 + 2.8.2401 Alexis Campailla, Enrico Giordani, Jonathan Pickett Microsoft Open Technologies, Inc. A porting of Redis on Windows 64-bit. diff --git a/src/version.h b/src/version.h index 4e034702e52..127715df64a 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.8.2400" +#define REDIS_VERSION "2.8.2401"