diff --git a/Redis on Windows Release Notes.md b/Redis on Windows Release Notes.md index 356ae15b6b4..7543a10561c 100644 --- a/Redis on Windows Release Notes.md +++ b/Redis on Windows Release Notes.md @@ -1,15 +1,30 @@ MSOpenTech Redis on Windows 3.0 Release Notes ============================================= +--[ Redis on Windows 3.0.502 ] Release date: Jun 21 2016 + + - [PR] Fixed pointer overflow crash when using bgsave under rare circumstances. (by @Harachie) + - [PR] Update msvs documentation to correct maxmemory-policy. (by @andyvan) + - [Setup] Fixed the NETWORK SERVICE account issue on Windows 10. + - [PR] Compare empty string for command line extract save. (by @zhumingjian ) + - [PR] Fix: bug on extracting sub-params. (by @zeliard) + - [PR] Fix: string (handle value) to a unsigned 64bit number for LLP64 OS. (by @zeliard) + - [PR] Fix: add break stmt in switch-case. (by @zeliard) + - [Fix] 'Infinity' parsing. + - [Fix] Linking error on some platforms using VS2015. + - [PR] No separate NuGet download anymore on shields.io (by @jamesmanning ) + - [PR] Fix building problems in MSVS2015. (by @CAIQT) + - [Docs] Fixed wrong value for redis install example. + --[ Redis on Windows 3.0.501 ] Release date: Jan 15 2016 - [Docs] Single dash replaced with double dash for service cmd parameters. - - [PR] Update Redis on Windows.md + - [PR] Update Redis on Windows.md (by @ammills01) - [Fix] Enabled jemalloc thread safety. - [Code cleanup] Better expression grouping. - [Docs] Added info about the memory working set showed by the task manager. - [Fix] Portability fix for strtol. - [Docs] Updated README.md. - - [PR] Add notice for VS2013 without Update 5 + - [PR] Add notice for VS2013 without Update 5 (by @gimmemoore) --[ Redis on Windows 3.0.500 ] Release date: Dec 07 2015 @@ -27,8 +42,8 @@ MSOpenTech Redis on Windows 3.0 Release Notes - [Debug] Added Redis version at the top of the crash report. - [Build] Added platform in the destination folder path for the x86 build. - [Fix] 32 bit support. - - [PR] Unable to build Redis 3.0 on 32 bit. (by @Jens-G ) - - [PR] Switching 3.0 to x86 results in LNK errors. (by @Jens-G ) + - [PR] Unable to build Redis 3.0 on 32 bit. (by @Jens-G) + - [PR] Switching 3.0 to x86 results in LNK errors. (by @Jens-G) - [Comment] Fixed comment. - [PR] replace argument sign '-' to '--'. (by @Hawkeyes0) - [Fix] Duplicated sockets management for diskless replication. diff --git a/appveyor.yml b/appveyor.yml index f5f621d98ea..e93dce4dbc0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 2.8.21.{build} +version: 3.0.502.{build} branches: # whitelist diff --git a/msvs/msi/RedisMsi/Product.wxs b/msvs/msi/RedisMsi/Product.wxs index c95dad9c09f..336605f4e0b 100644 --- a/msvs/msi/RedisMsi/Product.wxs +++ b/msvs/msi/RedisMsi/Product.wxs @@ -21,7 +21,7 @@ redis-64 Redis 64-bit - 3.0.501 + 3.0.502 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 d9835285a9f..161dc742c4f 100644 --- a/msvs/setups/nuget/Redis.nuspec +++ b/msvs/setups/nuget/Redis.nuspec @@ -3,7 +3,7 @@ redis-64 Redis 64-bit - 3.0.501 + 3.0.502 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 0355504fb41..0e417e750cb 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "3.0.501" +#define REDIS_VERSION "3.0.502"