Skip to content

Commit 3891027

Browse files
committed
Version bump to 2.0
1 parent fc93eee commit 3891027

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Build/version.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<CppRestBaseFileName>cpprest</CppRestBaseFileName>
5-
<CppRestSDKVersionMajor>1</CppRestSDKVersionMajor>
6-
<CppRestSDKVersionMinor>5</CppRestSDKVersionMinor>
5+
<CppRestSDKVersionMajor>2</CppRestSDKVersionMajor>
6+
<CppRestSDKVersionMinor>0</CppRestSDKVersionMinor>
77
<CppRestSDKVersionRevision>0</CppRestSDKVersionRevision>
88
<CppRestSDKVersionFileSuffix>$(CppRestSDKVersionMajor)_$(CppRestSDKVersionMinor)</CppRestSDKVersionFileSuffix>
99
<CppRestSDKVersionString>$(CppRestSDKVersionMajor).$(CppRestSDKVersionMinor)</CppRestSDKVersionString>
1010
</PropertyGroup>
1111
<!--
1212
Note: remember to regenerate guiddefs.wxi files using gen_guids_for_msi.ps1 whenever major or minor version file changes
1313
-->
14-
</Project>
14+
</Project>

Release/include/cpprest/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* ==--==
1717
*/
1818
#define CPPREST_VERSION_REVISION 0
19-
#define CPPREST_VERSION_MINOR 5
20-
#define CPPREST_VERSION_MAJOR 1
19+
#define CPPREST_VERSION_MINOR 0
20+
#define CPPREST_VERSION_MAJOR 2
2121

2222
#define CPPREST_VERSION (CPPREST_VERSION_MAJOR*100000+CPPREST_VERSION_MINOR*100+CPPREST_VERSION_REVISION)

Release/nuget/cpprestsdk.autopkg

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
nuget {
22
nuspec {
33
id = cpprestsdk;
4-
version : 1.4.0;
4+
version : 2.0.0;
55
title: C++ REST SDK;
66
authors: {casablancacore};
77
owners: {Microsoft, Visual C++};
@@ -11,22 +11,22 @@ nuget {
1111
requireLicenseAcceptance: true;
1212
summary: "The C++ REST SDK is a cross-platform, modern, and asynchronous library that enables developers to access and author connected applications";
1313
description: "This library is a Microsoft effort to support cloud-based client-server communication in native code using a modern asynchronous C++ API design. The C++ REST SDK (codename "Casablanca") is a project to start exploring how to best support C++ developers who want to take advantage of the radical shift in software architecture that cloud computing represents.";
14-
releaseNotes: "Release of C++ Rest SDK 1.4.0 libraries.";
14+
releaseNotes: "Release of C++ Rest SDK 2.0.0 libraries.";
1515
copyright: Copyright 2013;
1616
tags: {REST, native, C++, JSON, Casablanca, Http, Uri};
1717
};
1818

1919
files {
2020

2121
#defines {
22-
VER_WDOTS = 1.4;
23-
VER_WUNDERSCORE = 1_4;
22+
VER_WDOTS = 2.0;
23+
VER_WUNDERSCORE = 2_0;
2424

25-
SDK_RT110 = 110\CppRESTWindowsSDK\1.4\redist\;
26-
SDK_RT110Phone = 110\WindowsPhone8\CppRESTWindowsSDK\1.4\redist\;
27-
SDK_2012 = 110\Microsoft Cpp REST SDK for VS 2012 v1.4\SDK\;
28-
SDK_RT120 = 120\CppRESTWindowsSDK\1.4\redist\;
29-
SDK_2013 = 120\Microsoft Cpp REST SDK for VS 2013 v1.4\SDK\;
25+
SDK_RT110 = 110\CppRESTWindowsSDK\2.0\redist\;
26+
SDK_RT110Phone = 110\WindowsPhone8\CppRESTWindowsSDK\2.0\redist\;
27+
SDK_2012 = 110\Microsoft Cpp REST SDK for VS 2012 v2.0\SDK\;
28+
SDK_RT120 = 120\CppRESTWindowsSDK\2.0\redist\;
29+
SDK_2013 = 120\Microsoft Cpp REST SDK for VS 2013 v2.0\SDK\;
3030
}
3131

3232
// grab all the files in the include folder

Release/nuget/init.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function Copy-Natvis($DestFolder)
55
if ((Test-Path $DestFolder) -eq $True)
66
{
77
# Update casablanca version for each release here.
8-
$DestFile = Join-Path -path $DestFolder -childpath "cpprest1_4.natvis";
8+
$DestFile = Join-Path -path $DestFolder -childpath "cpprest2_0.natvis";
99

1010
# Check to see if cpp rest natvis file for this version already exists
1111
# if not, then copy into user profile for Visual Studio to pick up

0 commit comments

Comments
 (0)