From 6f7ecc59cd4f64a4ebb4707a4caaed8e25e24ab8 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Fri, 27 Feb 2015 09:49:46 -0500 Subject: [PATCH] Bump patch version --- CMakeLists.txt | 2 +- Doxyfile | 2 +- readme.md | 2 +- websocketpp/version.hpp | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ccb1f24c..827915602 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ cmake_minimum_required (VERSION 2.6) set (WEBSOCKETPP_MAJOR_VERSION 0) set (WEBSOCKETPP_MINOR_VERSION 5) -set (WEBSOCKETPP_PATCH_VERSION 0) +set (WEBSOCKETPP_PATCH_VERSION 1) set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSION}.${WEBSOCKETPP_PATCH_VERSION}) set(INSTALL_INCLUDE_DIR include CACHE PATH "Installation directory for header files") diff --git a/Doxyfile b/Doxyfile index d9de24838..ff9724267 100644 --- a/Doxyfile +++ b/Doxyfile @@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp" # if some version control system is used. -PROJECT_NUMBER = "0.5.0" +PROJECT_NUMBER = "0.5.1" # Using the PROJECT_BRIEF tag one can provide an optional one line description diff --git a/readme.md b/readme.md index aa0cde262..a9551373d 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -WebSocket++ (0.5.0) +WebSocket++ (0.5.1) ========================== WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index 519fa681a..24d6be4a2 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 = 5; /// 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 @@ -53,7 +53,7 @@ static int const patch_version = 0; static char const prerelease_flag[] = ""; /// Default user agent string -static char const user_agent[] = "WebSocket++/0.5.0"; +static char const user_agent[] = "WebSocket++/0.5.1"; } // namespace websocketpp