Skip to content

Commit

Permalink
Prepare version 0.5.0 for submission
Browse files Browse the repository at this point in the history
  • Loading branch information
zaphoyd committed Jan 22, 2015
1 parent 31c761a commit 650e4c3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ project (websocketpp)
cmake_minimum_required (VERSION 2.6)

set (WEBSOCKETPP_MAJOR_VERSION 0)
set (WEBSOCKETPP_MINOR_VERSION 4)
set (WEBSOCKETPP_MINOR_VERSION 5)
set (WEBSOCKETPP_PATCH_VERSION 0)
set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSION}.${WEBSOCKETPP_PATCH_VERSION})

Expand Down
4 changes: 2 additions & 2 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp"
# if some version control system is used.


PROJECT_NUMBER = "0.4.x-dev"
PROJECT_NUMBER = "0.5.0"


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

HTML_TIMESTAMP = YES
HTML_TIMESTAMP = NO

# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
HEAD

0.5.0 - 2015-01-22
- BREAKING UTILITY CHANGE: Deprecated methods `http::parser::parse_headers`,
`http::response::parse_complete`, and `http::request::parse_complete` have
been removed.
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WebSocket++ (0.4.x-dev)
WebSocket++ (0.5.0)
==========================

WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket
Expand Down
6 changes: 3 additions & 3 deletions websocketpp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,18 @@ namespace websocketpp {
/// Library major version number
static int const major_version = 0;
/// Library minor version number
static int const minor_version = 4;
static int const minor_version = 5;
/// Library patch version number
static int const patch_version = 0;
/// 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.4.x-dev";
static char const user_agent[] = "WebSocket++/0.5.0";

} // namespace websocketpp

Expand Down

0 comments on commit 650e4c3

Please # to comment.