Skip to content

Commit 1c79f4c

Browse files
author
Peter Thorson
committed
[release] Prep documentation & version info for 0.8.2 release
1 parent 7f76bdd commit 1c79f4c

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ endif ()
2424
############ Project name and version
2525
set (WEBSOCKETPP_MAJOR_VERSION 0)
2626
set (WEBSOCKETPP_MINOR_VERSION 8)
27-
set (WEBSOCKETPP_PATCH_VERSION 0)
27+
set (WEBSOCKETPP_PATCH_VERSION 2)
2828
set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSION}.${WEBSOCKETPP_PATCH_VERSION})
2929

3030
if(POLICY CMP0048)

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = WebSocket++
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.8.1
41+
PROJECT_NUMBER = 0.8.2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

changelog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
HEAD
2+
3+
0.8.2 - 2020-04-19
24
- Examples: Update print_client_tls example to remove use of deprecated
35
OpenSSL functions.
46
- Compatibility: Removes the use of make_shared in a number of cases where
57
it would be incompatible with newer versions of ASIO. Thank you Stefan
6-
Floeren for the patch.
8+
Floeren for the patch. #810 #814 #862 #843 #794 #808
79
- CMake: Update cmake installer to better handle dependencies when using
810
g++ on MacOS. Thank you Luca Palano for reporting and a patch. #831
911
- CMake: Update cmake installer to use a variable for the include directory

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.8.1)
1+
WebSocket++ (0.8.2)
22
==========================
33

44
WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket

websocketpp/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ static int const major_version = 0;
4444
/// Library minor version number
4545
static int const minor_version = 8;
4646
/// Library patch version number
47-
static int const patch_version = 1;
47+
static int const patch_version = 2;
4848
/// Library pre-release flag
4949
/**
5050
* This is a textual flag indicating the type and number for pre-release
@@ -54,7 +54,7 @@ static int const patch_version = 1;
5454
static char const prerelease_flag[] = "";
5555

5656
/// Default user agent string
57-
static char const user_agent[] = "WebSocket++/0.8.1";
57+
static char const user_agent[] = "WebSocket++/0.8.2";
5858

5959
} // namespace websocketpp
6060

0 commit comments

Comments
 (0)