mirror of
https://github.com/boostorg/beast.git
synced 2025-08-01 22:04:34 +02:00
Version 358
This commit is contained in:
committed by
Mohammad Nejati
parent
1edc287c05
commit
3772c1113e
14
CHANGELOG.md
14
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:
|
Version 357:
|
||||||
|
|
||||||
* Added new examples for Unix domain sockets
|
* Added new examples for Unix domain sockets
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------
|
#-------------------------------------------------
|
||||||
cmake_minimum_required(VERSION 3.8...3.20)
|
cmake_minimum_required(VERSION 3.8...3.20)
|
||||||
set(BOOST_BEAST_VERSION 357)
|
set(BOOST_BEAST_VERSION 358)
|
||||||
if (BOOST_SUPERPROJECT_VERSION)
|
if (BOOST_SUPERPROJECT_VERSION)
|
||||||
set(BOOST_BEAST_VERSION ${BOOST_SUPERPROJECT_VERSION})
|
set(BOOST_BEAST_VERSION ${BOOST_SUPERPROJECT_VERSION})
|
||||||
endif ()
|
endif ()
|
||||||
|
@@ -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]
|
[heading Boost 1.88]
|
||||||
|
|
||||||
[*Fixes]
|
[*Fixes]
|
||||||
|
@@ -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 357
|
#define BOOST_BEAST_VERSION 358
|
||||||
|
|
||||||
// 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)
|
||||||
|
Reference in New Issue
Block a user