Skip to content

Commit 6f7ecc5

Browse files
committed
Bump patch version
1 parent f7cea42 commit 6f7ecc5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cmake_minimum_required (VERSION 2.6)
1010

1111
set (WEBSOCKETPP_MAJOR_VERSION 0)
1212
set (WEBSOCKETPP_MINOR_VERSION 5)
13-
set (WEBSOCKETPP_PATCH_VERSION 0)
13+
set (WEBSOCKETPP_PATCH_VERSION 1)
1414
set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSION}.${WEBSOCKETPP_PATCH_VERSION})
1515

1616
set(INSTALL_INCLUDE_DIR include CACHE PATH "Installation directory for header files")

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp"
3333
# if some version control system is used.
3434

3535

36-
PROJECT_NUMBER = "0.5.0"
36+
PROJECT_NUMBER = "0.5.1"
3737

3838

3939
# Using the PROJECT_BRIEF tag one can provide an optional one line description

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.5.0)
1+
WebSocket++ (0.5.1)
22
==========================
33

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

websocketpp/version.hpp

+2-2
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 = 5;
4646
/// Library patch version number
47-
static int const patch_version = 0;
47+
static int const patch_version = 1;
4848
/// Library pre-release flag
4949
/**
5050
* This is a textual flag indicating the type and number for pre-release
@@ -53,7 +53,7 @@ static int const patch_version = 0;
5353
static char const prerelease_flag[] = "";
5454

5555
/// Default user agent string
56-
static char const user_agent[] = "WebSocket++/0.5.0";
56+
static char const user_agent[] = "WebSocket++/0.5.1";
5757

5858
} // namespace websocketpp
5959

0 commit comments

Comments
 (0)