Skip to content

Commit cc7d74d

Browse files
author
Peter Thorson
committed
Set version flags for release
1 parent b154ac5 commit cc7d74d

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
@@ -38,7 +38,7 @@ PROJECT_NAME = WebSocket++
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.7.x-dev
41+
PROJECT_NUMBER = 0.7.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
HEAD
2+
3+
0.7.0 - 2016-02-22
24
- MINOR BREAKING SOCKET POLICY CHANGE: Asio transport socket policy method
35
`cancel_socket` will now return `lib::asio::error_code` instead of `void`.
46
Custom Asio transport socket policies will need to be updated accordingly.

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.7.x-dev)
1+
WebSocket++ (0.7.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
@@ -51,10 +51,10 @@ static int const patch_version = 0;
5151
* versions (dev, alpha, beta, rc). This will be blank for release versions.
5252
*/
5353

54-
static char const prerelease_flag[] = "dev";
54+
static char const prerelease_flag[] = "";
5555

5656
/// Default user agent string
57-
static char const user_agent[] = "WebSocket++/0.7.x-dev";
57+
static char const user_agent[] = "WebSocket++/0.7.0";
5858

5959
} // namespace websocketpp
6060

0 commit comments

Comments
 (0)