Skip to content

Commit e203dbe

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

16 files changed

+27
-25
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.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

+2
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+2-2
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

+2-2
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

+2-2
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
*/

websocketpp/transport/asio/connection.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class connection : public config::socket_type::socket_con_type {
116116
* established but before any additional wrappers (proxy connects, TLS
117117
* handshakes, etc) have been performed.
118118
*
119-
* @since 0.4.0-alpha1
119+
* @since 0.3.0
120120
*
121121
* @param h The handler to call on tcp pre init.
122122
*/
@@ -145,7 +145,7 @@ class connection : public config::socket_type::socket_con_type {
145145
* etc have been performed. This is fired before any bytes are read or any
146146
* WebSocket specific handshake logic has been performed.
147147
*
148-
* @since 0.4.0-alpha1
148+
* @since 0.3.0
149149
*
150150
* @param h The handler to call on tcp post init.
151151
*/

websocketpp/transport/asio/endpoint.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ class endpoint : public config::socket_type {
231231
* established but before any additional wrappers (proxy connects, TLS
232232
* handshakes, etc) have been performed.
233233
*
234-
* @since 0.4.0-alpha1
234+
* @since 0.3.0
235235
*
236236
* @param h The handler to call on tcp pre init.
237237
*/
@@ -260,7 +260,7 @@ class endpoint : public config::socket_type {
260260
* etc have been performed. This is fired before any bytes are read or any
261261
* WebSocket specific handshake logic has been performed.
262262
*
263-
* @since 0.4.0-alpha1
263+
* @since 0.3.0
264264
*
265265
* @param h The handler to call on tcp post init.
266266
*/
@@ -283,7 +283,7 @@ class endpoint : public config::socket_type {
283283
* A value of zero will use the operating system default. This is the
284284
* default value.
285285
*
286-
* @since 0.4.0-alpha1
286+
* @since 0.3.0
287287
*
288288
* @param backlog The maximum length of the queue of pending connections
289289
*/
@@ -301,7 +301,7 @@ class endpoint : public config::socket_type {
301301
*
302302
* The default is false.
303303
*
304-
* @since 0.4.0-alpha1
304+
* @since 0.3.0
305305
*
306306
* @param value Whether or not to use the SO_REUSEADDR option
307307
*/
@@ -604,7 +604,7 @@ class endpoint : public config::socket_type {
604604
* called either before the endpoint has run out of work or before it was
605605
* started
606606
*
607-
* @since 0.4.0-alpha1
607+
* @since 0.3.0
608608
*/
609609
void start_perpetual() {
610610
m_work.reset(new boost::asio::io_service::work(*m_io_service));
@@ -616,7 +616,7 @@ class endpoint : public config::socket_type {
616616
* method to exit normally when it runs out of connections. If there are
617617
* currently active connections it will not end until they are complete.
618618
*
619-
* @since 0.4.0-alpha1
619+
* @since 0.3.0
620620
*/
621621
void stop_perpetual() {
622622
m_work.reset();

websocketpp/transport/asio/security/none.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ class connection : public lib::enable_shared_from_this<connection> {
242242
* not presently provide any additional information so all errors will be
243243
* reported as the generic transport pass_through error.
244244
*
245-
* @since 0.4.0-beta1
245+
* @since 0.3.0
246246
*
247247
* @param ec The error code to translate_ec
248248
* @return The translated error code

websocketpp/transport/asio/security/tls.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ class connection : public lib::enable_shared_from_this<connection> {
298298
* Non-TLS related errors are returned as the transport generic pass_through
299299
* error.
300300
*
301-
* @since 0.4.0-beta1
301+
* @since 0.3.0
302302
*
303303
* @param ec The error code to translate_ec
304304
* @return The translated error code

websocketpp/transport/iostream/connection.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class connection : public lib::enable_shared_from_this< connection<config> > {
159159
* it doesn't it indicates that the connection was most likely closed or
160160
* is in an error state where it is no longer accepting new input.
161161
*
162-
* @since 0.4.0-beta1
162+
* @since 0.3.0
163163
*
164164
* @param buf Char buffer to read into the websocket
165165
* @param len Length of buf

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[] = "alpha4";
53+
static char const prerelease_flag[] = "";
5454

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

5858
} // namespace websocketpp
5959

0 commit comments

Comments
 (0)