Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e8dda21

Browse files
committedDec 15, 2017
Push version number to 2.10.1
1 parent bd4afa3 commit e8dda21

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎Build/version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<CppRestBaseFileName>cpprest</CppRestBaseFileName>
55
<CppRestSDKVersionMajor>2</CppRestSDKVersionMajor>
66
<CppRestSDKVersionMinor>10</CppRestSDKVersionMinor>
7-
<CppRestSDKVersionRevision>0</CppRestSDKVersionRevision>
7+
<CppRestSDKVersionRevision>1</CppRestSDKVersionRevision>
88
<CppRestSDKVersionFileSuffix>$(CppRestSDKVersionMajor)_$(CppRestSDKVersionMinor)</CppRestSDKVersionFileSuffix>
99
<CppRestSDKVersionString>$(CppRestSDKVersionMajor).$(CppRestSDKVersionMinor)</CppRestSDKVersionString>
1010
</PropertyGroup>

‎Release/include/cpprest/version.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
44
*
55
*/
6-
#define CPPREST_VERSION_REVISION 0
6+
#define CPPREST_VERSION_REVISION 1
77
#define CPPREST_VERSION_MINOR 10
88
#define CPPREST_VERSION_MAJOR 2
99

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

‎Release/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_policy(SET CMP0022 NEW)
22

33
set(CPPREST_VERSION_MAJOR 2)
44
set(CPPREST_VERSION_MINOR 10)
5-
set(CPPREST_VERSION_REVISION 0)
5+
set(CPPREST_VERSION_REVISION 1)
66

77
file(GLOB HEADERS_CPPREST "../include/cpprest/*.h" "../include/cpprest/*.hpp" "../include/cpprest/*.dat")
88
file(GLOB HEADERS_PPLX "../include/pplx/*.h" "../include/pplx/*.hpp")

0 commit comments

Comments
 (0)
Please sign in to comment.