Skip to content

Commit e203dbe

Browse files
committed
package for 0.3.0 release
1 parent ad2932b commit e203dbe

File tree

16 files changed

+27
-25
lines changed

16 files changed

+27
-25
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
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.4.0-dev"
36+
PROJECT_NUMBER = "0.3.0"
3737

3838

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

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
HEAD
2+
3+
0.3.0 - 2014-08-10
24
- Feature: Adds `start_perpetual` and `stop_perpetual` methods to asio transport
35
These may be used to replace manually managed `asio::io_service::work` objects
46
- Feature: Allow setting pong and handshake timeouts at runtime.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.3.0-alpha4)
1+
WebSocket++ (0.3.0)
22
==========================
33

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

websocketpp/close.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ namespace status {
204204
/**
205205
* See https://tools.ietf.org/html/rfc6455#section-7.4 for more details.
206206
*
207-
* @since 0.4.0-beta1
207+
* @since 0.3.0
208208
*
209209
* @param [in] code The code to look up.
210210
* @return A human readable interpretation of the code.

websocketpp/config/core.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ struct core {
223223
*
224224
* The default is 32MB
225225
*
226-
* @since 0.4.0-alpha1
226+
* @since 0.3.0
227227
*/
228228
static const size_t max_message_size = 32000000;
229229

websocketpp/config/core_client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ struct core_client {
232232
*
233233
* The default is 32MB
234234
*
235-
* @since 0.4.0-alpha1
235+
* @since 0.3.0
236236
*/
237237
static const size_t max_message_size = 32000000;
238238

websocketpp/config/debug.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ struct debug_core {
224224
*
225225
* The default is 32MB
226226
*
227-
* @since 0.4.0-alpha1
227+
* @since 0.3.0
228228
*/
229229
static const size_t max_message_size = 32000000;
230230

websocketpp/connection.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ class connection
538538
*
539539
* The default is set by the endpoint that creates the connection.
540540
*
541-
* @since 0.4.0-alpha1
541+
* @since 0.3.0
542542
*/
543543
size_t get_max_message_size() const {
544544
return m_max_message_size;
@@ -552,7 +552,7 @@ class connection
552552
*
553553
* The default is set by the endpoint that creates the connection.
554554
*
555-
* @since 0.4.0-alpha1
555+
* @since 0.3.0
556556
*
557557
* @param new_value The value to set as the maximum message size.
558558
*/

websocketpp/endpoint.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ class endpoint : public config::transport_type, public config::endpoint_base {
357357
*
358358
* The default is set by the max_message_size value from the template config
359359
*
360-
* @since 0.4.0-alpha1
360+
* @since 0.3.0
361361
*/
362362
size_t get_max_message_size() const {
363363
return m_max_message_size;
@@ -371,7 +371,7 @@ class endpoint : public config::transport_type, public config::endpoint_base {
371371
*
372372
* The default is set by the max_message_size value from the template config
373373
*
374-
* @since 0.4.0-alpha1
374+
* @since 0.3.0
375375
*
376376
* @param new_value The value to set as the maximum message size.
377377
*/

websocketpp/processors/processor.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class processor {
177177
*
178178
* The default is retrieved from the max_message_size value from the template config
179179
*
180-
* @since 0.4.0-alpha1
180+
* @since 0.3.0
181181
*/
182182
size_t get_max_message_size() const {
183183
return m_max_message_size;
@@ -190,7 +190,7 @@ class processor {
190190
*
191191
* The default is retrieved from the max_message_size value from the template config
192192
*
193-
* @since 0.4.0-alpha1
193+
* @since 0.3.0
194194
*
195195
* @param new_value The value to set as the maximum message size.
196196
*/

0 commit comments

Comments
 (0)