diff --git a/Doxyfile b/Doxyfile index 49256bb89..cb725d564 100644 --- a/Doxyfile +++ b/Doxyfile @@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp" # if some version control system is used. -PROJECT_NUMBER = "0.6.x-dev" +PROJECT_NUMBER = "0.6.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description diff --git a/changelog.md b/changelog.md index af7d32a33..986245bf8 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,6 @@ HEAD + +0.6.0 - MINOR BREAKING TRANSPORT POLICY CHANGE: Custom transport policies will now be required to include a new method `void set_uri(uri_ptr u)`. An implementation is not required. The stub transport policy includes an example stub method diff --git a/readme.md b/readme.md index 1993c7f45..18716d4fa 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -WebSocket++ (0.6.x-dev) +WebSocket++ (0.6.0) ========================== WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index f5f561aac..7c2d0f495 100644 --- a/websocketpp/version.hpp +++ b/websocketpp/version.hpp @@ -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[] = "dev"; +static char const prerelease_flag[] = ""; /// Default user agent string -static char const user_agent[] = "WebSocket++/0.6.x-dev"; +static char const user_agent[] = "WebSocket++/0.6.0"; } // namespace websocketpp