Skip to content

Mint v2.10.16. #1395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Release/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif()

set(CPPREST_VERSION_MAJOR 2)
set(CPPREST_VERSION_MINOR 10)
set(CPPREST_VERSION_REVISION 15)
set(CPPREST_VERSION_REVISION 16)

enable_testing()

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 @@ -5,6 +5,6 @@
*/
#define CPPREST_VERSION_MINOR 10
#define CPPREST_VERSION_MAJOR 2
#define CPPREST_VERSION_REVISION 15
#define CPPREST_VERSION_REVISION 16

#define CPPREST_VERSION (CPPREST_VERSION_MAJOR * 100000 + CPPREST_VERSION_MINOR * 100 + CPPREST_VERSION_REVISION)
13 changes: 13 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
cpprestsdk (2.10.16)
* PR#1383 CMake fixes + CMake search for OpenSSL (macOS)
* PR#1392 Update submodule websocketpp to 0.8.2
* PR#1393 Do not report errors (such as EBADF and EINVAL) from setsockopt here, since this is a performance optimization only, and hard errors will be picked up by the following operation
* PR#1379 Fix compilation with GCC 4.8/4.9, which was broken by commit 53fab3a.
* PR#1328 Add support for HTTP redirection in ASIO and WinHTTP-based http_clients
* PR#1332 Fix more http test build fails in certain configurations
* PR#1370 Remove redundant std::move noted by gcc 9.2 (-Wredundant-move)
* PR#1372 Static analyzer (PVS Studio) fixes
* PR#1350 Expose json::value::parse for UTF8 string on Windows
* PR#1344 libcpprestsdk: fix building as a static library
-- cpprestsdk team <[email protected]> FRI, 24 Apr 2020 16:56:00 -0700

cpprestsdk (2.10.15)
* Extremely special thanks to @garethsb-sony for a large number of contributions in this release
* PR#1209 Workarounds for two GCC 4.7.2 bugs with lambda functions
Expand Down