diff --git a/CHANGELOG.md b/CHANGELOG.md index b1c81bb7..e5d85e4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +Version 358: + +* Added missing `cstdint` header to `detail/cpu_info.hpp` +* Conditionally defined `immediate_executor_type` in `async_base` +* Replaced `detail/work_guard.hpp` with `net::executor_work_guard` +* Used `handshake_timeout` for closing handshake during read operations +* Removed moved sections from documentation +* Removed superfluous log messages from tests +* Fixed portability issues for building tests in MinGW +* Fixed portability issues for building tests in MinGW +* Fixed `std::is_trivial` deprecation warnings + +-------------------------------------------------------------------------------- + Version 357: * Added new examples for Unix domain sockets diff --git a/CMakeLists.txt b/CMakeLists.txt index ea49ac8f..5a2248b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ # #------------------------------------------------- cmake_minimum_required(VERSION 3.8...3.20) -set(BOOST_BEAST_VERSION 357) +set(BOOST_BEAST_VERSION 358) if (BOOST_SUPERPROJECT_VERSION) set(BOOST_BEAST_VERSION ${BOOST_SUPERPROJECT_VERSION}) endif () diff --git a/doc/qbk/release_notes.qbk b/doc/qbk/release_notes.qbk index c75febcf..89a6d27b 100644 --- a/doc/qbk/release_notes.qbk +++ b/doc/qbk/release_notes.qbk @@ -11,6 +11,25 @@ [/-----------------------------------------------------------------------------] +[heading Boost 1.89] + +[*Fixes] + +* [issue 3002] Conditionally defined `immediate_executor_type` in `async_base` +* [issue 2999] Used `handshake_timeout` for closing handshake during read operations +* [issue 3003] Added missing `cstdint` header to `detail/cpu_info.hpp` +* [issue 3016] Fixed `std::is_trivial` deprecation warnings + +[*Improvements] + +* [issue 3005] Replaced `detail/work_guard.hpp` with `net::executor_work_guard` +* [issue 3016] Fixed portability issues for building tests in MinGW + +[*Documentation] + +* [issue 3009] Removed moved sections from documentation +* [issue 3009] Removed superfluous log messages from tests + [heading Boost 1.88] [*Fixes] diff --git a/include/boost/beast/version.hpp b/include/boost/beast/version.hpp index 53106832..c321207d 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 357 +#define BOOST_BEAST_VERSION 358 // 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)