diff --git a/Release/CMakeLists.txt b/Release/CMakeLists.txt index 7a955576c8..797397760c 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 9) +set(CPPREST_VERSION_REVISION 10) enable_testing() diff --git a/Release/include/cpprest/version.h b/Release/include/cpprest/version.h index 7bc4902a82..5aab91263d 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 9 +#define CPPREST_VERSION_REVISION 10 #define CPPREST_VERSION (CPPREST_VERSION_MAJOR * 100000 + CPPREST_VERSION_MINOR * 100 + CPPREST_VERSION_REVISION) diff --git a/changelog.md b/changelog.md index 3018160250..ae5efc3773 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,9 @@ +cpprestsdk (2.10.10) +---------------------- +* PR#1023 Handle multi-byte unicode characters in json parsing +* PR#1033 Temporary fix for VS2013. Note that VS2013 is still not in support. +-- cpprestsdk team TUE, 29 Jan 2019 22:38:00 -0800 + cpprestsdk (2.10.9) ---------------------- * PR#973 Address gcc warnings-as-errors in compression code, test improvements