From 1c79f4c909a7412747fe7ba51883adba35a224ef Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sun, 19 Apr 2020 13:10:18 -0500 Subject: [PATCH] [release] Prep documentation & version info for 0.8.2 release --- CMakeLists.txt | 2 +- Doxyfile | 2 +- changelog.md | 4 +++- readme.md | 2 +- websocketpp/version.hpp | 4 ++-- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2fc33002e..4f93e243a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ endif () ############ Project name and version set (WEBSOCKETPP_MAJOR_VERSION 0) set (WEBSOCKETPP_MINOR_VERSION 8) -set (WEBSOCKETPP_PATCH_VERSION 0) +set (WEBSOCKETPP_PATCH_VERSION 2) set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSION}.${WEBSOCKETPP_PATCH_VERSION}) if(POLICY CMP0048) diff --git a/Doxyfile b/Doxyfile index e2061659b..20b695cc9 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = WebSocket++ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.8.1 +PROJECT_NUMBER = 0.8.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/changelog.md b/changelog.md index b112c6cd3..3488a1981 100644 --- a/changelog.md +++ b/changelog.md @@ -1,9 +1,11 @@ HEAD + +0.8.2 - 2020-04-19 - Examples: Update print_client_tls example to remove use of deprecated OpenSSL functions. - Compatibility: Removes the use of make_shared in a number of cases where it would be incompatible with newer versions of ASIO. Thank you Stefan - Floeren for the patch. + Floeren for the patch. #810 #814 #862 #843 #794 #808 - CMake: Update cmake installer to better handle dependencies when using g++ on MacOS. Thank you Luca Palano for reporting and a patch. #831 - CMake: Update cmake installer to use a variable for the include directory diff --git a/readme.md b/readme.md index aa99f668e..6cc608516 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -WebSocket++ (0.8.1) +WebSocket++ (0.8.2) ========================== WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index f701ab103..5766546f7 100644 --- a/websocketpp/version.hpp +++ b/websocketpp/version.hpp @@ -44,7 +44,7 @@ static int const major_version = 0; /// Library minor version number static int const minor_version = 8; /// Library patch version number -static int const patch_version = 1; +static int const patch_version = 2; /// Library pre-release flag /** * This is a textual flag indicating the type and number for pre-release @@ -54,7 +54,7 @@ static int const patch_version = 1; static char const prerelease_flag[] = ""; /// Default user agent string -static char const user_agent[] = "WebSocket++/0.8.1"; +static char const user_agent[] = "WebSocket++/0.8.2"; } // namespace websocketpp