Skip to content

Commit 4231ede

Browse files
committed
package as alpha4
1 parent 4761938 commit 4231ede

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp"
3333
# if some version control system is used.
3434

3535

36-
PROJECT_NUMBER = "0.3.0-alpha3"
36+
PROJECT_NUMBER = "0.3.0-alpha4"
3737

3838

3939
# Using the PROJECT_BRIEF tag one can provide an optional one line description

changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
HEAD
2+
3+
0.3.0-alpha4 - 2013-10-11
24
- HTTP requests ending normally are no longer logged as errors. Thank you Banaan
35
for reporting. #294
46
- Eliminates spurious expired timers in certain error conditions. Thank you

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.3.0-alpha3)
1+
WebSocket++ (0.3.0-alpha4)
22
==========================
33

44
WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket

roadmap.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,18 @@ Complete & Tested:
1010
- 32 bit support
1111
- Logging
1212
- Client role
13+
- message_handler
14+
- ping_handler
15+
- pong_handler
16+
- open_handler
17+
- close_handler
18+
- echo_server & echo_server_tls
1319

1420
Implimented, needs more testing
1521
- TLS support
16-
- echo_server & echo_server_tls
1722
- External io_service support
1823
- socket_init_handler
1924
- tls_init_handler
20-
- message_handler
21-
- ping_handler
22-
- pong_handler
2325
- tcp_init_handler
2426
- exception/error handling
2527
- Subprotocol negotiation
@@ -30,12 +32,13 @@ Implimented, needs more testing
3032
- Visual Studio / Windows support
3133
- Timeouts
3234
- CMake build/install support
33-
- open_handler
34-
- close_handler
35+
3536
- validate_handler
3637
- http_handler
3738

3839
Future feature roadmap
3940
- Extension support
4041
- permessage_compress extension
4142
- Message buffer pool
43+
- flow control
44+
- tutorials & documentation

websocketpp/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ static int const patch_version = 0;
5050
* This is a textual flag indicating the type and number for pre-release
5151
* versions (dev, alpha, beta, rc). This will be blank for release versions.
5252
*/
53-
static char const prerelease_flag[] = "alpha3";
53+
static char const prerelease_flag[] = "alpha4";
5454

5555
/// Default user agent string
56-
static char const user_agent[] = "WebSocket++/0.3.0-alpha3";
56+
static char const user_agent[] = "WebSocket++/0.3.0-alpha4";
5757

5858
} // namespace websocketpp
5959

0 commit comments

Comments
 (0)