From 18212a2a7967e12d740bfb957e500892b3463c88 Mon Sep 17 00:00:00 2001 From: Billy O'Neal Date: Fri, 24 Apr 2020 17:44:16 -0700 Subject: [PATCH] Mint v2.10.16. (#1395) --- Release/CMakeLists.txt | 2 +- Release/include/cpprest/version.h | 2 +- changelog.md | 13 +++++++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Release/CMakeLists.txt b/Release/CMakeLists.txt index e495bd391b..13a3f01db8 100644 --- a/Release/CMakeLists.txt +++ b/Release/CMakeLists.txt @@ -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() diff --git a/Release/include/cpprest/version.h b/Release/include/cpprest/version.h index b505f1b9e3..0bffcc2a6b 100644 --- a/Release/include/cpprest/version.h +++ b/Release/include/cpprest/version.h @@ -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) diff --git a/changelog.md b/changelog.md index d5a44eb6b9..4c9bb6f123 100644 --- a/changelog.md +++ b/changelog.md @@ -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 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