Skip to content

Commit 650e4c3

Browse files
committed
Prepare version 0.5.0 for submission
1 parent 31c761a commit 650e4c3

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project (websocketpp)
99
cmake_minimum_required (VERSION 2.6)
1010

1111
set (WEBSOCKETPP_MAJOR_VERSION 0)
12-
set (WEBSOCKETPP_MINOR_VERSION 4)
12+
set (WEBSOCKETPP_MINOR_VERSION 5)
1313
set (WEBSOCKETPP_PATCH_VERSION 0)
1414
set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSION}.${WEBSOCKETPP_PATCH_VERSION})
1515

Doxyfile

+2-2
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.4.x-dev"
36+
PROJECT_NUMBER = "0.5.0"
3737

3838

3939
# Using the PROJECT_BRIEF tag one can provide an optional one line description
@@ -974,7 +974,7 @@ HTML_COLORSTYLE_GAMMA = 148
974974
# page will contain the date and time when the page was generated. Setting
975975
# this to NO can help when comparing the output of multiple runs.
976976

977-
HTML_TIMESTAMP = YES
977+
HTML_TIMESTAMP = NO
978978

979979
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
980980
# documentation will contain sections that can be hidden and shown after the

changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
HEAD
2+
3+
0.5.0 - 2015-01-22
24
- BREAKING UTILITY CHANGE: Deprecated methods `http::parser::parse_headers`,
35
`http::response::parse_complete`, and `http::request::parse_complete` have
46
been removed.

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.4.x-dev)
1+
WebSocket++ (0.5.0)
22
==========================
33

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

websocketpp/version.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ namespace websocketpp {
4242
/// Library major version number
4343
static int const major_version = 0;
4444
/// Library minor version number
45-
static int const minor_version = 4;
45+
static int const minor_version = 5;
4646
/// Library patch version number
4747
static int const patch_version = 0;
4848
/// Library pre-release flag
4949
/**
5050
* This is a textual flag indicating the type and number for pre-release
5151
* versions (dev, alpha, beta, rc). This will be blank for release versions.
5252
*/
53-
static char const prerelease_flag[] = "dev";
53+
static char const prerelease_flag[] = "";
5454

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

5858
} // namespace websocketpp
5959

0 commit comments

Comments
 (0)