From 49ec654b5f1d7dc4b2bc5051a754eeec0a4d3c00 Mon Sep 17 00:00:00 2001 From: Mohammad Date: Mon, 30 Oct 2023 13:45:58 +0000 Subject: [PATCH] Set version to 350 --- CHANGELOG.md | 28 ++++++++++++++++++---------- CMakeLists.txt | 2 +- include/boost/beast/version.hpp | 2 +- 3 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a107d16b..8708ba04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: -* Added support for `immediate_executor`. (#2672) -* Replaced `BOOST_ASIO_INITFN_RESULT_TYPE` with `BOOST_ASIO_INITFN_AUTO_RES`. (#2669) -* Updated license info for `work_guard`. (#2664) -* Corrected handler requirements of ping/pong. (#2663) -* Improved Drone caching. (#2655) -* `server-flex-awaitable` example now resets parser. (#2660) -* Updated openssl version to 1.1.1.2100 for x86. (#2659) -* Set minimum gcc version to 5.0. (#2658) -* Introduced self-hosted GitHub actions runners. (#2656) -* Minor documentation fixes and updates. +* Added support for `immediate_executor` +* `BOOST_ASIO_INITFN_AUTO_RES` replaces `BOOST_ASIO_INITFN_RESULT_TYPE` +* Updated license info for `work_guard` +* Corrected handler requirements of ping/pong +* Improved Drone caching +* `server-flex-awaitable` example now resets parser +* OpenSSL 1.1.1.2100 or later is required for x86 +* GCC 5.0 or later is required +* Introduced self-hosted GitHub actions runners +* Minor documentation fixes and updates -------------------------------------------------------------------------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index f110c50f..dbc8adde 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,7 +83,7 @@ endfunction() # #------------------------------------------------------------------------------- -project (Beast VERSION 349) +project (Beast VERSION 350) set_property (GLOBAL PROPERTY USE_FOLDERS ON) option (Beast_BUILD_EXAMPLES "Build examples" ON) diff --git a/include/boost/beast/version.hpp b/include/boost/beast/version.hpp index 2079bcaa..e95d8e93 100644 --- a/include/boost/beast/version.hpp +++ b/include/boost/beast/version.hpp @@ -20,7 +20,7 @@ This is a simple integer that is incremented by one every 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. #define BOOST_BEAST_VERSION_STRING "Boost.Beast/" BOOST_STRINGIZE(BOOST_BEAST_VERSION)