Skip to content

Commit

Permalink
update version information for develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
zaphoyd committed Aug 9, 2014
1 parent 122d4e2 commit 5d0c2f6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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 3)
set (WEBSOCKETPP_MINOR_VERSION 4)
set (WEBSOCKETPP_PATCH_VERSION 0)
set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSION}.${WEBSOCKETPP_PATCH_VERSION})

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.3.0"
PROJECT_NUMBER = "0.4.0-dev"


# 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.3.0)
WebSocket++ (0.4.0-dev)
==========================

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 = 3;
static int const minor_version = 4;
/// 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[] = "";
static char const prerelease_flag[] = "dev";

/// Default user agent string
static char const user_agent[] = "WebSocket++/0.3.0";
static char const user_agent[] = "WebSocket++/0.4.0-dev";

} // namespace websocketpp

Expand Down

0 comments on commit 5d0c2f6

Please sign in to comment.