Skip to content

Commit 3f08de3

Browse files
committed
alpha3 release
1 parent a9f3821 commit 3f08de3

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
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-alpha2"
36+
PROJECT_NUMBER = "0.3.0-alpha3"
3737

3838

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

changelog.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
HEAD
2+
3+
0.3.0-alpha3 - 2013-07-16
24
- Minor refactor to bundled sha1 library
35
- HTTP header comparisons are now case insensitive. #220, #275
4-
- Refactors URI to be exception free and not use the regular expressions. This
5-
eliminates the dependency on boost or C++11 regex libraries.
6-
- Updates handling of Server and User-Agent headers
6+
- Refactors URI to be exception free and not use regular expressions. This
7+
eliminates the dependency on boost or C++11 regex libraries allowing native
8+
C++11 usage on GCC 4.4 and higher and significantly reduces staticly built
9+
binary sizes.
10+
- Updates handling of Server and User-Agent headers to better handle custom
11+
settings and allow suppression of these headers for security purposes.
712
- Fix issue where pong timeout handler always fired. Thank you Steven Klassen
813
for reporting this bug.
914
- Add ping and pong endpoint wrapper methods
1015
- Add `get_request()` pass through method to connection to allow calling methods
1116
specific to the HTTP policy in use.
12-
- Fix issue compiling with `WEBSOCKETPP_STRICT_MASKING`
17+
- Fix issue compile error with `WEBSOCKETPP_STRICT_MASKING` enabled and another
18+
issue where `WEBSOCKETPP_STRICT_MASKING` was not applied to incoming messages.
19+
Thank you Petter Norby for reporting and testing these bugs. #264
1320
- Add additional macro guards for use with boost_config. Thank you breyed
1421
for testing and code. #261
1522

readme.md

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

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

websocketpp/version.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ namespace websocketpp {
3333

3434
/*
3535
other places where version information is kept
36-
- echo_client
3736
- readme.md
3837
- changelog.md
3938
- Doxyfile
@@ -51,10 +50,10 @@ static int const patch_version = 0;
5150
* This is a textual flag indicating the type and number for pre-release
5251
* versions (dev, alpha, beta, rc). This will be blank for release versions.
5352
*/
54-
static char const prerelease_flag[] = "alpha2";
53+
static char const prerelease_flag[] = "alpha3";
5554

5655
/// Default user agent string
57-
static char const user_agent[] = "WebSocket++/0.3.0-alpha2";
56+
static char const user_agent[] = "WebSocket++/0.3.0-alpha3";
5857

5958
} // namespace websocketpp
6059

0 commit comments

Comments
 (0)