Skip to content

Commit

Permalink
Bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
zaphoyd committed Feb 27, 2015
1 parent f7cea42 commit 6f7ecc5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion 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.5.0"
PROJECT_NUMBER = "0.5.1"


# Using the PROJECT_BRIEF tag one can provide an optional one line description
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.5.0)
WebSocket++ (0.5.1)
==========================

WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket
Expand Down
4 changes: 2 additions & 2 deletions websocketpp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 6f7ecc5

Please sign in to comment.