Set version flags for release

This commit is contained in:
Peter Thorson
2016-02-22 08:28:27 -05:00
parent b154ac5907
commit cc7d74d8d0
4 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ PROJECT_NAME = WebSocket++
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 0.7.x-dev
PROJECT_NUMBER = 0.7.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
+2
View File
@@ -1,4 +1,6 @@
HEAD
0.7.0 - 2016-02-22
- MINOR BREAKING SOCKET POLICY CHANGE: Asio transport socket policy method
`cancel_socket` will now return `lib::asio::error_code` instead of `void`.
Custom Asio transport socket policies will need to be updated accordingly.
+1 -1
View File
@@ -1,4 +1,4 @@
WebSocket++ (0.7.x-dev)
WebSocket++ (0.7.0)
==========================
WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket
+2 -2
View File
@@ -51,10 +51,10 @@ static int const patch_version = 0;
* 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.7.x-dev";
static char const user_agent[] = "WebSocket++/0.7.0";
} // namespace websocketpp