From cc7d74d8d0e1703be90bd5bc2b0902f4a982fe53 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Mon, 22 Feb 2016 08:28:27 -0500 Subject: [PATCH] Set version flags for release --- Doxyfile | 2 +- changelog.md | 2 ++ readme.md | 2 +- websocketpp/version.hpp | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Doxyfile b/Doxyfile index 88a37bd..d7508f4 100644 --- a/Doxyfile +++ b/Doxyfile @@ -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 diff --git a/changelog.md b/changelog.md index 2b88963..15846ce 100644 --- a/changelog.md +++ b/changelog.md @@ -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. diff --git a/readme.md b/readme.md index 9072014..0de30f8 100644 --- a/readme.md +++ b/readme.md @@ -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 diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index aad8e31..b88cc11 100644 --- a/websocketpp/version.hpp +++ b/websocketpp/version.hpp @@ -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