From 4231edec53b23bfd11b14e959a58996c8157eee3 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Fri, 11 Oct 2013 06:39:55 -0500 Subject: [PATCH] package as alpha4 --- Doxyfile | 2 +- changelog.md | 2 ++ readme.md | 2 +- roadmap.md | 21 ++++++++++++--------- websocketpp/version.hpp | 4 ++-- 5 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Doxyfile b/Doxyfile index 98462d38c2..daf1cfe2d0 100644 --- a/Doxyfile +++ b/Doxyfile @@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp" # if some version control system is used. -PROJECT_NUMBER = "0.3.0-alpha3" +PROJECT_NUMBER = "0.3.0-alpha4" # Using the PROJECT_BRIEF tag one can provide an optional one line description diff --git a/changelog.md b/changelog.md index 9a8cd3cf66..776609b1c9 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,6 @@ HEAD + +0.3.0-alpha4 - 2013-10-11 - HTTP requests ending normally are no longer logged as errors. Thank you Banaan for reporting. #294 - Eliminates spurious expired timers in certain error conditions. Thank you diff --git a/readme.md b/readme.md index 0c36a8a9e9..4e2600fa33 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -WebSocket++ (0.3.0-alpha3) +WebSocket++ (0.3.0-alpha4) ========================== WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket diff --git a/roadmap.md b/roadmap.md index 35af1ed5ff..82e611456c 100644 --- a/roadmap.md +++ b/roadmap.md @@ -10,16 +10,18 @@ Complete & Tested: - 32 bit support - Logging - Client role - -Implimented, needs more testing -- TLS support -- echo_server & echo_server_tls -- External io_service support -- socket_init_handler -- tls_init_handler - message_handler - ping_handler - pong_handler +- open_handler +- close_handler +- echo_server & echo_server_tls + +Implimented, needs more testing +- TLS support +- External io_service support +- socket_init_handler +- tls_init_handler - tcp_init_handler - exception/error handling - Subprotocol negotiation @@ -30,8 +32,7 @@ Implimented, needs more testing - Visual Studio / Windows support - Timeouts - CMake build/install support -- open_handler -- close_handler + - validate_handler - http_handler @@ -39,3 +40,5 @@ Future feature roadmap - Extension support - permessage_compress extension - Message buffer pool +- flow control +- tutorials & documentation diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index 6c77010b55..e6c9cbf7ec 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[] = "alpha3"; +static char const prerelease_flag[] = "alpha4"; /// Default user agent string -static char const user_agent[] = "WebSocket++/0.3.0-alpha3"; +static char const user_agent[] = "WebSocket++/0.3.0-alpha4"; } // namespace websocketpp