Skip to content

Commit

Permalink
package for 0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zaphoyd committed Aug 9, 2014
1 parent ad2932b commit e203dbe
Show file tree
Hide file tree
Showing 16 changed files with 27 additions and 25 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.4.0-dev"
PROJECT_NUMBER = "0.3.0"


# 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 - 2014-08-10
- Feature: Adds `start_perpetual` and `stop_perpetual` methods to asio transport
These may be used to replace manually managed `asio::io_service::work` objects
- Feature: Allow setting pong and handshake timeouts at runtime.
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-alpha4)
WebSocket++ (0.3.0)
==========================

WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket
Expand Down
2 changes: 1 addition & 1 deletion websocketpp/close.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ namespace status {
/**
* See https://tools.ietf.org/html/rfc6455#section-7.4 for more details.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param [in] code The code to look up.
* @return A human readable interpretation of the code.
Expand Down
2 changes: 1 addition & 1 deletion websocketpp/config/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ struct core {
*
* The default is 32MB
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
static const size_t max_message_size = 32000000;

Expand Down
2 changes: 1 addition & 1 deletion websocketpp/config/core_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ struct core_client {
*
* The default is 32MB
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
static const size_t max_message_size = 32000000;

Expand Down
2 changes: 1 addition & 1 deletion websocketpp/config/debug.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ struct debug_core {
*
* The default is 32MB
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
static const size_t max_message_size = 32000000;

Expand Down
4 changes: 2 additions & 2 deletions websocketpp/connection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ class connection
*
* The default is set by the endpoint that creates the connection.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
size_t get_max_message_size() const {
return m_max_message_size;
Expand All @@ -552,7 +552,7 @@ class connection
*
* The default is set by the endpoint that creates the connection.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param new_value The value to set as the maximum message size.
*/
Expand Down
4 changes: 2 additions & 2 deletions websocketpp/endpoint.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class endpoint : public config::transport_type, public config::endpoint_base {
*
* The default is set by the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
size_t get_max_message_size() const {
return m_max_message_size;
Expand All @@ -371,7 +371,7 @@ class endpoint : public config::transport_type, public config::endpoint_base {
*
* The default is set by the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param new_value The value to set as the maximum message size.
*/
Expand Down
4 changes: 2 additions & 2 deletions websocketpp/processors/processor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class processor {
*
* The default is retrieved from the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
size_t get_max_message_size() const {
return m_max_message_size;
Expand All @@ -190,7 +190,7 @@ class processor {
*
* The default is retrieved from the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param new_value The value to set as the maximum message size.
*/
Expand Down
4 changes: 2 additions & 2 deletions websocketpp/transport/asio/connection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class connection : public config::socket_type::socket_con_type {
* established but before any additional wrappers (proxy connects, TLS
* handshakes, etc) have been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp pre init.
*/
Expand Down Expand Up @@ -145,7 +145,7 @@ class connection : public config::socket_type::socket_con_type {
* etc have been performed. This is fired before any bytes are read or any
* WebSocket specific handshake logic has been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp post init.
*/
Expand Down
12 changes: 6 additions & 6 deletions websocketpp/transport/asio/endpoint.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class endpoint : public config::socket_type {
* established but before any additional wrappers (proxy connects, TLS
* handshakes, etc) have been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp pre init.
*/
Expand Down Expand Up @@ -260,7 +260,7 @@ class endpoint : public config::socket_type {
* etc have been performed. This is fired before any bytes are read or any
* WebSocket specific handshake logic has been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp post init.
*/
Expand All @@ -283,7 +283,7 @@ class endpoint : public config::socket_type {
* A value of zero will use the operating system default. This is the
* default value.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param backlog The maximum length of the queue of pending connections
*/
Expand All @@ -301,7 +301,7 @@ class endpoint : public config::socket_type {
*
* The default is false.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param value Whether or not to use the SO_REUSEADDR option
*/
Expand Down Expand Up @@ -604,7 +604,7 @@ class endpoint : public config::socket_type {
* called either before the endpoint has run out of work or before it was
* started
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
void start_perpetual() {
m_work.reset(new boost::asio::io_service::work(*m_io_service));
Expand All @@ -616,7 +616,7 @@ class endpoint : public config::socket_type {
* method to exit normally when it runs out of connections. If there are
* currently active connections it will not end until they are complete.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
void stop_perpetual() {
m_work.reset();
Expand Down
2 changes: 1 addition & 1 deletion websocketpp/transport/asio/security/none.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class connection : public lib::enable_shared_from_this<connection> {
* not presently provide any additional information so all errors will be
* reported as the generic transport pass_through error.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param ec The error code to translate_ec
* @return The translated error code
Expand Down
2 changes: 1 addition & 1 deletion websocketpp/transport/asio/security/tls.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class connection : public lib::enable_shared_from_this<connection> {
* Non-TLS related errors are returned as the transport generic pass_through
* error.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param ec The error code to translate_ec
* @return The translated error code
Expand Down
2 changes: 1 addition & 1 deletion websocketpp/transport/iostream/connection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class connection : public lib::enable_shared_from_this< connection<config> > {
* it doesn't it indicates that the connection was most likely closed or
* is in an error state where it is no longer accepting new input.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param buf Char buffer to read into the websocket
* @param len Length of buf
Expand Down
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[] = "alpha4";
static char const prerelease_flag[] = "";

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

} // namespace websocketpp

Expand Down

0 comments on commit e203dbe

Please sign in to comment.