Set version to 350

This commit is contained in:
Mohammad
2023-10-30 13:45:58 +00:00
committed by Mohammad Nejati
parent 667e9ea251
commit 49ec654b5f
3 changed files with 20 additions and 12 deletions

View File

@ -1,15 +1,23 @@
Version 350:
* Allocation and invocation hooks are removed
* `detail::bind_default_executor` helper is removed
* Improved documentation for `websocket::stream::async_write_some`
--------------------------------------------------------------------------------
Version 349: Version 349:
* Added support for `immediate_executor`. (#2672) * Added support for `immediate_executor`
* Replaced `BOOST_ASIO_INITFN_RESULT_TYPE` with `BOOST_ASIO_INITFN_AUTO_RES`. (#2669) * `BOOST_ASIO_INITFN_AUTO_RES` replaces `BOOST_ASIO_INITFN_RESULT_TYPE`
* Updated license info for `work_guard`. (#2664) * Updated license info for `work_guard`
* Corrected handler requirements of ping/pong. (#2663) * Corrected handler requirements of ping/pong
* Improved Drone caching. (#2655) * Improved Drone caching
* `server-flex-awaitable` example now resets parser. (#2660) * `server-flex-awaitable` example now resets parser
* Updated openssl version to 1.1.1.2100 for x86. (#2659) * OpenSSL 1.1.1.2100 or later is required for x86
* Set minimum gcc version to 5.0. (#2658) * GCC 5.0 or later is required
* Introduced self-hosted GitHub actions runners. (#2656) * Introduced self-hosted GitHub actions runners
* Minor documentation fixes and updates. * Minor documentation fixes and updates
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -83,7 +83,7 @@ endfunction()
# #
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
project (Beast VERSION 349) project (Beast VERSION 350)
set_property (GLOBAL PROPERTY USE_FOLDERS ON) set_property (GLOBAL PROPERTY USE_FOLDERS ON)
option (Beast_BUILD_EXAMPLES "Build examples" ON) option (Beast_BUILD_EXAMPLES "Build examples" ON)

View File

@ -20,7 +20,7 @@
This is a simple integer that is incremented by one every This is a simple integer that is incremented by one every
time a set of code changes is merged to the develop branch. time a set of code changes is merged to the develop branch.
*/ */
#define BOOST_BEAST_VERSION 349 #define BOOST_BEAST_VERSION 350
// A string describing BOOST_BEAST_VERSION, that can be used in http headers. // A string describing BOOST_BEAST_VERSION, that can be used in http headers.
#define BOOST_BEAST_VERSION_STRING "Boost.Beast/" BOOST_STRINGIZE(BOOST_BEAST_VERSION) #define BOOST_BEAST_VERSION_STRING "Boost.Beast/" BOOST_STRINGIZE(BOOST_BEAST_VERSION)