diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c956445..bc94f71e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 -------------------------------------------------------------------------------- diff --git a/include/beast/version.hpp b/include/beast/version.hpp index e629515e..e66860b8 100644 --- a/include/beast/version.hpp +++ b/include/beast/version.hpp @@ -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)