Skip to content

Commit

Permalink
Bump version number for 2.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kavyako committed Feb 22, 2016
1 parent de610ba commit c9ca174
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Build/version.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<CppRestBaseFileName>cpprest</CppRestBaseFileName>
<CppRestSDKVersionMajor>2</CppRestSDKVersionMajor>
<CppRestSDKVersionMinor>7</CppRestSDKVersionMinor>
<CppRestSDKVersionMinor>8</CppRestSDKVersionMinor>
<CppRestSDKVersionRevision>0</CppRestSDKVersionRevision>
<CppRestSDKVersionFileSuffix>$(CppRestSDKVersionMajor)_$(CppRestSDKVersionMinor)</CppRestSDKVersionFileSuffix>
<CppRestSDKVersionString>$(CppRestSDKVersionMajor).$(CppRestSDKVersionMinor)</CppRestSDKVersionString>
Expand Down
2 changes: 1 addition & 1 deletion Release/include/cpprest/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* ==--==
*/
#define CPPREST_VERSION_REVISION 0
#define CPPREST_VERSION_MINOR 7
#define CPPREST_VERSION_MINOR 8
#define CPPREST_VERSION_MAJOR 2

#define CPPREST_VERSION (CPPREST_VERSION_MAJOR*100000+CPPREST_VERSION_MINOR*100+CPPREST_VERSION_REVISION)
2 changes: 1 addition & 1 deletion Release/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ target_link_libraries(${Casablanca_LIBRARY}

# Portions specific to cpprest binary versioning.
set (CPPREST_VERSION_MAJOR 2)
set (CPPREST_VERSION_MINOR 7)
set (CPPREST_VERSION_MINOR 8)
set (CPPREST_VERSION_REVISION 0)

if(WIN32)
Expand Down
2 changes: 1 addition & 1 deletion Release/src/build/init.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Copy-Natvis($DestFolder)
if ((Test-Path $DestFolder) -eq $True)
{
# Update casablanca version for each release here.
$DestFile = Join-Path -path $DestFolder -childpath "cpprest2_7.natvis";
$DestFile = Join-Path -path $DestFolder -childpath "cpprest2_8.natvis";

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

0 comments on commit c9ca174

Please sign in to comment.