Skip to content

Commit

Permalink
package as alpha4
Browse files Browse the repository at this point in the history
  • Loading branch information
zaphoyd committed Oct 11, 2013
1 parent 4761938 commit 4231ede
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
15 changes: 9 additions & 6 deletions roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@ Complete & Tested:
- 32 bit support
- Logging
- Client role
- message_handler
- ping_handler
- pong_handler
- open_handler
- close_handler
- echo_server & echo_server_tls

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
- tcp_init_handler
- exception/error handling
- Subprotocol negotiation
Expand All @@ -30,12 +32,13 @@ Implimented, needs more testing
- Visual Studio / Windows support
- Timeouts
- CMake build/install support
- open_handler
- close_handler

- validate_handler
- http_handler

Future feature roadmap
- Extension support
- permessage_compress extension
- Message buffer pool
- flow control
- tutorials & documentation
4 changes: 2 additions & 2 deletions websocketpp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4231ede

Please sign in to comment.