Skip to content

Commit

Permalink
alpha3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zaphoyd committed Jul 16, 2013
1 parent a9f3821 commit 3f08de3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 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-alpha2"
PROJECT_NUMBER = "0.3.0-alpha3"


# Using the PROJECT_BRIEF tag one can provide an optional one line description
Expand Down
15 changes: 11 additions & 4 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
HEAD

0.3.0-alpha3 - 2013-07-16
- Minor refactor to bundled sha1 library
- HTTP header comparisons are now case insensitive. #220, #275
- Refactors URI to be exception free and not use the regular expressions. This
eliminates the dependency on boost or C++11 regex libraries.
- Updates handling of Server and User-Agent headers
- Refactors URI to be exception free and not use regular expressions. This
eliminates the dependency on boost or C++11 regex libraries allowing native
C++11 usage on GCC 4.4 and higher and significantly reduces staticly built
binary sizes.
- Updates handling of Server and User-Agent headers to better handle custom
settings and allow suppression of these headers for security purposes.
- Fix issue where pong timeout handler always fired. Thank you Steven Klassen
for reporting this bug.
- Add ping and pong endpoint wrapper methods
- Add `get_request()` pass through method to connection to allow calling methods
specific to the HTTP policy in use.
- Fix issue compiling with `WEBSOCKETPP_STRICT_MASKING`
- Fix issue compile error with `WEBSOCKETPP_STRICT_MASKING` enabled and another
issue where `WEBSOCKETPP_STRICT_MASKING` was not applied to incoming messages.
Thank you Petter Norby for reporting and testing these bugs. #264
- Add additional macro guards for use with boost_config. Thank you breyed
for testing and code. #261

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-alpha2)
WebSocket++ (0.3.0-alpha3)
==========================

WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket
Expand Down
5 changes: 2 additions & 3 deletions websocketpp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ namespace websocketpp {

/*
other places where version information is kept
- echo_client
- readme.md
- changelog.md
- Doxyfile
Expand All @@ -51,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[] = "alpha2";
static char const prerelease_flag[] = "alpha3";

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

} // namespace websocketpp

Expand Down

0 comments on commit 3f08de3

Please sign in to comment.