From c6d7e295bf5a0ab9b5f896720cc1a0e0fdc397a7 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Mon, 16 Jul 2018 07:40:53 -0500 Subject: [PATCH] Set version flags for release --- Doxyfile | 2 +- readme.md | 2 +- websocketpp/version.hpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Doxyfile b/Doxyfile index 463c684ea..e2061659b 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.9.x-dev +PROJECT_NUMBER = 0.8.1 # 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/readme.md b/readme.md index 8be503dfd..aa99f668e 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -WebSocket++ (0.9.0-dev) +WebSocket++ (0.8.1) ========================== WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index bf1ae5544..f701ab103 100644 --- a/websocketpp/version.hpp +++ b/websocketpp/version.hpp @@ -44,17 +44,17 @@ 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 = 0; +static int const patch_version = 1; /// Library pre-release flag /** * This is a textual flag indicating the type and number for pre-release * versions (dev, alpha, beta, rc). This will be blank for release versions. */ -static char const prerelease_flag[] = "dev"; +static char const prerelease_flag[] = ""; /// Default user agent string -static char const user_agent[] = "WebSocket++/0.9.0-dev"; +static char const user_agent[] = "WebSocket++/0.8.1"; } // namespace websocketpp