Set version to 52

This commit is contained in:
Vinnie Falco
2017-06-09 18:04:05 -07:00
parent 5149cf8495
commit 140246957e
2 changed files with 6 additions and 6 deletions

View File

@ -24,16 +24,16 @@ Actions Required:
* Change call sites which use message_type with `set_option`
to call `stream::binary` or `stream::text` instead.
* Change call sites which use 1read_buffer_size1 with `set_option` to
* Change call sites which use `read_buffer_size` with `set_option` to
call `stream::read_buffer_size` instead.
* Change call sites which use 1read_message_max1 with `set_option` to
* Change call sites which use `read_message_max` with `set_option` to
call `stream::read_message_max` instead.
* Change call sites which use 1write_buffer_size1 with `set_option` to
* Change call sites which use `write_buffer_size` with `set_option` to
call `stream::write_buffer_size` instead.
* Change call sites which use 1ping_callback1 with `set_option` to
* Change call sites which use `ping_callback1 with `set_option` to
call `stream::ping_callback` instead.
* Remove the `opcode` reference parameter from calls to synchronous
@ -48,7 +48,7 @@ Actions Required:
the signature `void(error_code, bool fin)`, use the `bool`
to indicate if the frame is the last frame.
* Remove all occurences of the `opcode` enum at call sites
* Remove all occurrences of the `opcode` enum at call sites
--------------------------------------------------------------------------------

View File

@ -18,7 +18,7 @@
This is a simple integer that is incremented by one every time
a set of code changes is merged to the master or develop branch.
*/
#define BEAST_VERSION 51
#define BEAST_VERSION 52
#define BEAST_VERSION_STRING "Beast/" BOOST_STRINGIZE(BEAST_VERSION)