Skip to content

Commit c4cef12

Browse files
authored
Mint 2.10.7. (microsoft#933)
1 parent 2a19d84 commit c4cef12

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

Release/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endif()
1111

1212
set(CPPREST_VERSION_MAJOR 2)
1313
set(CPPREST_VERSION_MINOR 10)
14-
set(CPPREST_VERSION_REVISION 6)
14+
set(CPPREST_VERSION_REVISION 7)
1515

1616
enable_testing()
1717

@@ -184,7 +184,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
184184
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /MP")
185185
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MP")
186186
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /MP")
187-
187+
188188
if (WINDOWS_STORE OR WINDOWS_PHONE)
189189
add_compile_options(/ZW)
190190
endif()

Release/include/cpprest/version.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
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 6
76
#define CPPREST_VERSION_MINOR 10
87
#define CPPREST_VERSION_MAJOR 2
8+
#define CPPREST_VERSION_REVISION 7
99

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

Release/tests/functional/misc/version/version.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ TEST(VersionTest1)
2020
{
2121
// If these tests fail, this means that version.props and version.h are out of sync
2222
// When the version number if changed, both files must change
23-
VERIFY_ARE_EQUAL(_VER_REVISION, CPPREST_VERSION_REVISION);
2423
VERIFY_ARE_EQUAL(_VER_MINOR, CPPREST_VERSION_MINOR);
2524
VERIFY_ARE_EQUAL(_VER_MAJOR, CPPREST_VERSION_MAJOR);
25+
VERIFY_ARE_EQUAL(_VER_REVISION, CPPREST_VERSION_REVISION);
2626
}
2727

2828
}
2929

3030
}}}}
31-

changelog.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
cpprestsdk (2.10.7)
2+
----------------------
3+
* cpprestsdk now has Azure Pipelines continuous integration.
4+
* Builds for Android and iOS were repaired, now checked in Azure Pipelines to make sure that doesn't bit-rot in the future.
5+
* Several race conditions in the listener were worked around; the listeners remain experimental and are unlikely to productized in their current form; the race conditions are structural, but at least the client tests pass most of the time.
6+
* Incorrect handling of connection pooling bug that caused segfaults on Ubuntu introduced in 2.10.4 has been repaired.
7+
* websocketpp checked in 0.5.1 version has been changed to a submodule and updated to 0.8.1.
8+
* Added an API to set the number of threads in the asio thread pool, see PR#883
9+
* Legacy unmaintained Visual Studio project files have been deleted, please use CMake instead.
10+
* PR#670 Export methods to set/get the ambient scheduler in cpprest dll
11+
* PR#866 Add Transfer-Encoding compression support and extensible compression API
12+
* PR#892 Improve utf8_to_utf16 speed for common path
13+
* PR#897 added URI resolution according to RFC3986
14+
* PR#935 Fix spelling mistakes across the library
15+
* PR#936 Use pplx namespace consistently
16+
* PR#937 Remove _ASYNCRTIMP from ~http_listener() and implement inline
17+
* PR#940 Avoid using identifiers reserved by C++ in header guards
18+
* PR#943 blackjack sample: use vector instead of shared pointer for array
19+
-- cpprestsdk team <[email protected]> MON, 30 Oct 2018 20:32:00 -0800
20+
121
cpprestsdk (2.10.6)
222
----------------------
323
* PR#844 Fix clang build error

0 commit comments

Comments
 (0)