File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cmake_minimum_required (VERSION 2.6)
10
10
11
11
set (WEBSOCKETPP_MAJOR_VERSION 0)
12
12
set (WEBSOCKETPP_MINOR_VERSION 5)
13
- set (WEBSOCKETPP_PATCH_VERSION 0 )
13
+ set (WEBSOCKETPP_PATCH_VERSION 1 )
14
14
set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION} .${WEBSOCKETPP_MINOR_VERSION} .${WEBSOCKETPP_PATCH_VERSION} )
15
15
16
16
set (INSTALL_INCLUDE_DIR include CACHE PATH "Installation directory for header files" )
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp"
33
33
# if some version control system is used.
34
34
35
35
36
- PROJECT_NUMBER = "0.5.0 "
36
+ PROJECT_NUMBER = "0.5.1 "
37
37
38
38
39
39
# Using the PROJECT_BRIEF tag one can provide an optional one line description
Original file line number Diff line number Diff line change 1
- WebSocket++ (0.5.0 )
1
+ WebSocket++ (0.5.1 )
2
2
==========================
3
3
4
4
WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ static int const major_version = 0;
44
44
// / Library minor version number
45
45
static int const minor_version = 5 ;
46
46
// / Library patch version number
47
- static int const patch_version = 0 ;
47
+ static int const patch_version = 1 ;
48
48
// / Library pre-release flag
49
49
/* *
50
50
* This is a textual flag indicating the type and number for pre-release
@@ -53,7 +53,7 @@ static int const patch_version = 0;
53
53
static char const prerelease_flag[] = " " ;
54
54
55
55
// / Default user agent string
56
- static char const user_agent[] = " WebSocket++/0.5.0 " ;
56
+ static char const user_agent[] = " WebSocket++/0.5.1 " ;
57
57
58
58
} // namespace websocketpp
59
59
You can’t perform that action at this time.
0 commit comments