update version information for develop branch

This commit is contained in:
Peter Thorson
2014-08-09 15:38:25 -05:00
parent 122d4e2128
commit 5d0c2f6341
4 changed files with 6 additions and 6 deletions

View File

@@ -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})

View File

@@ -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

View File

@@ -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

View File

@@ -42,7 +42,7 @@ 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
@@ -50,10 +50,10 @@ static int const patch_version = 0;
* 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