Skip to content

Commit ec77f72

Browse files
committed
Release v5.0.14.1
- fix/workaround for using modules in forked process started for async save (#130)
1 parent 4b5b367 commit ec77f72

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

msvs/RedisForWindows.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ END
5050
//
5151

5252
VS_VERSION_INFO VERSIONINFO
53-
FILEVERSION 5,0,14
54-
PRODUCTVERSION 5,0,14
53+
FILEVERSION 5,0,14,1
54+
PRODUCTVERSION 5,0,14,1
5555
FILEFLAGSMASK 0x3fL
5656
#ifdef _DEBUG
5757
FILEFLAGS 0x1L
@@ -68,10 +68,10 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Poradowski.com Tomasz Poradowski"
7070
VALUE "FileDescription", "Redis for Windows, based on MS OpenTech port."
71-
VALUE "FileVersion", "5.0.14"
71+
VALUE "FileVersion", "5.0.14.1"
7272
VALUE "LegalCopyright", "Copyright (C) 2006-2018 Salvatore Sanfilippo, Microsoft Open Technologies Inc., Tomasz Poradowski"
7373
VALUE "ProductName", "Redis for Windows"
74-
VALUE "ProductVersion", "5.0.14"
74+
VALUE "ProductVersion", "5.0.14.1"
7575
END
7676
END
7777
BLOCK "VarFileInfo"

msvs/msi/RedisMsi/Product.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<Product Id="*"
2222
Name="Redis on Windows"
2323
Language="1033"
24-
Version="5.0.14"
24+
Version="5.0.14.1"
2525
Manufacturer="Poradowski.com"
2626
UpgradeCode="{05410198-7212-4FC4-B7C8-AFEFC3DA0FBC}">
2727
<Package InstallerVersion="200"

msvs/setups/chocolatey/Redis.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>redis-64</id>
55
<title>Redis 64-bit</title>
6-
<version>5.0.14</version>
6+
<version>5.0.14.1</version>
77
<authors>Alexis Campailla, Enrico Giordani, Jonathan Pickett</authors>
88
<owners>Microsoft Open Technologies, Inc.</owners>
99
<description>A porting of Redis on Windows 64-bit.

msvs/setups/nuget/Redis.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>redis-64</id>
55
<title>Redis 64-bit</title>
6-
<version>5.0.14</version>
6+
<version>5.0.14.1</version>
77
<authors>Alexis Campailla, Enrico Giordani, Jonathan Pickett</authors>
88
<owners>Microsoft Open Technologies, Inc.</owners>
99
<description>A porting of Redis on Windows 64-bit.

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define REDIS_VERSION "5.0.14"
1+
#define REDIS_VERSION "5.0.14.1"

0 commit comments

Comments
 (0)