diff --git a/Redis on Windows Release Notes.md b/Redis on Windows Release Notes.md index 3a08a7142ad1a744a42a27b0eb15a4e7fdcc07d1..8554800c0ee2dd0e91a0fb7a84e398a8652b731d 100644 --- a/Redis on Windows Release Notes.md +++ b/Redis on Windows Release Notes.md @@ -1,5 +1,46 @@ MSOpenTech Redis on Windows 2.8 Release Notes ============================================= +--[ Redis on Windows 2.8.2400 ] Release date: Jan 21 2016 + + - Merged tag 2.8.24 from antirez/2.8 + - [Docs] Added info about the memory working set showed by the task manager. + - [Comment] Fixed typo. + - [Docs] Updated README.md. + - [PR]Add notice for VS2013 without Update 5 + - [Fix] Portability fix for strtol(). + - [Code cleanup] QForkStartup refactoring. + - [Code cleanup] Comments, code formatting, minor code refactoring. + - [Code refactoring] Moved global variables initialization in one place. + - [Design Change] Use dlmalloc for sentinel and persistence off. + - [Code cleanup] Fixed typo in comments and variable name. + - [Code cleanup] Macro definition. + - [Fix] x86 build break. + - [Code cleanup] Removed unused and duplicated #defines. + - [Test] Added regression test for replication when AUTH is on. + - [Setup] Updated the command to push chocolatey packages. + - [Fix] Wrong return value upon error. Code formatting. + - [Log] Added Redis version at the top of the crash report. + - [Fix] Disable replication if persistence is not available. + - [Code cleanup] Better functions and variables names. + - [Code cleanup] Error handling using ThrowLastError() method. + - [Fix] Avoid potential null pointer access. + - [PR] Documentation: replace argument sign '-' to '--'. + - [Fix] Remove leftover .dat files from the working dir. + - [Fix] do_socketSave2() rework for duplicated sockets management. + - [Code cleanup] Variables/methods name, comments, formatting. + - [Fix] Windows-specific fixes for replication. + - [Test] Fixed bad merge. + - [Portability] Fixes for type 'long'. + - Merge tag 2.8.23 from antirez/2.8 + - [Code cleanup] Fixed tabs. + - [Test] Removed Windows-specific workaround. Fixed tabs. + - [Fix] Duplicated sockets need to be closed properly. + - [Code cleanup] Renamed WSIOCP_ReceiveDone to WSIOCP_QueueNextRead. + - [Fix] Sentinel notification-script 2nd argument needs quotes. + - [PR] Passed STARTUPINFO parameter to CreateProcessA instead of NULL. + - [Fix] Prevent UnhandledExceptiontHandler from entering a loop. + - [Code refactoring] IsWindowsVersionAtLeast optimization. + - [Change] Use VirtualProtect in RejoinCOWPages on Windows 6.2 and higher. --[ Redis on Windows 2.8.2104 ] Release date: Oct 15 2015 diff --git a/msvs/msi/RedisMsi/Product.wxs b/msvs/msi/RedisMsi/Product.wxs index 6fd6c6e79e9821220f9d84a9ff035e7625fffc55..182cd65f192b8d6edfcea919008c92ba05b56ce3 100644 --- a/msvs/msi/RedisMsi/Product.wxs +++ b/msvs/msi/RedisMsi/Product.wxs @@ -21,7 +21,7 @@ redis-64 Redis 64-bit - 2.8.2104 + 2.8.2400 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 241b7026f09a50f00c4e34cdc63b9c0ce48d6916..b8a418a640701671f9d956be848ce8fc45ecd7ae 100644 --- a/msvs/setups/nuget/Redis.nuspec +++ b/msvs/setups/nuget/Redis.nuspec @@ -3,7 +3,7 @@ redis-64 Redis 64-bit - 2.8.2104 + 2.8.2400 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 daa9402be0fc4c9d3f09e3b8b2748098a602f46a..4e034702e52e0ef9ac82613ef9f6dd64d1a19ed0 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.8.24" +#define REDIS_VERSION "2.8.2400"