Skip to content

Commit f931734

Browse files
author
Peter Thorson
committed
prep for release
1 parent af792ae commit f931734

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp"
3333
# if some version control system is used.
3434

3535

36-
PROJECT_NUMBER = "0.6.x-dev"
36+
PROJECT_NUMBER = "0.6.0"
3737

3838

3939
# Using the PROJECT_BRIEF tag one can provide an optional one line description

changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
HEAD
2+
3+
0.6.0
24
- MINOR BREAKING TRANSPORT POLICY CHANGE: Custom transport policies will now be
35
required to include a new method `void set_uri(uri_ptr u)`. An implementation
46
is not required. The stub transport policy includes an example stub method

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.6.x-dev)
1+
WebSocket++ (0.6.0)
22
==========================
33

44
WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket

websocketpp/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ static int const patch_version = 0;
5050
* This is a textual flag indicating the type and number for pre-release
5151
* versions (dev, alpha, beta, rc). This will be blank for release versions.
5252
*/
53-
static char const prerelease_flag[] = "dev";
53+
static char const prerelease_flag[] = "";
5454

5555
/// Default user agent string
56-
static char const user_agent[] = "WebSocket++/0.6.x-dev";
56+
static char const user_agent[] = "WebSocket++/0.6.0";
5757

5858
} // namespace websocketpp
5959

0 commit comments

Comments
 (0)