From 25d6b26f7038eeec3b51e2e0a70960a8e34fcd68 Mon Sep 17 00:00:00 2001 From: Robert Schumacher Date: Fri, 17 Aug 2018 09:48:34 -0700 Subject: [PATCH] Fix incorrect version.h. Fixes #942 --- Release/include/cpprest/version.h | 4 ++-- changelog.md | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Release/include/cpprest/version.h b/Release/include/cpprest/version.h index 3167e148b..df0f99cf4 100644 --- a/Release/include/cpprest/version.h +++ b/Release/include/cpprest/version.h @@ -3,9 +3,9 @@ * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. * */ -#define CPPREST_VERSION_REVISION 2 +#define CPPREST_VERSION_REVISION 5 #define CPPREST_VERSION_MINOR 10 -#define CPPREST_VERSION_MAJOR 4 +#define CPPREST_VERSION_MAJOR 2 #define CPPREST_VERSION (CPPREST_VERSION_MAJOR*100000+CPPREST_VERSION_MINOR*100+CPPREST_VERSION_REVISION) diff --git a/changelog.md b/changelog.md index b37c24792..569401e51 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +cpprestsdk (2.10.5) +---------------------- +* Issue#842 Fix incorrect `cpprest/version.h` +-- cpprestsdk team FRI, 17 Aug 2018 09:47:00 -0800 + cpprestsdk (2.10.4) ---------------------- * Added a `.clang-format` to enable consistent formatting.