Skip to content

Commit 37df6b6

Browse files
committed
Version 358
1 parent a2cfda8 commit 37df6b6

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Version 358:
2+
3+
* Added missing `cstdint` header to `detail/cpu_info.hpp`
4+
* Conditionally defined `immediate_executor_type` in `async_base`
5+
* Replaced `detail/work_guard.hpp` with `net::executor_work_guard`
6+
* Used `handshake_timeout` for closing handshake during read operations
7+
* Removed moved sections from documentation
8+
* Removed superfluous log messages from tests
9+
* Fixed portability issues for building tests in MinGW
10+
11+
--------------------------------------------------------------------------------
12+
113
Version 357:
214

315
* Added new examples for Unix domain sockets

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
#-------------------------------------------------
1818
cmake_minimum_required(VERSION 3.8...3.20)
19-
set(BOOST_BEAST_VERSION 357)
19+
set(BOOST_BEAST_VERSION 358)
2020
if (BOOST_SUPERPROJECT_VERSION)
2121
set(BOOST_BEAST_VERSION ${BOOST_SUPERPROJECT_VERSION})
2222
endif ()

doc/qbk/release_notes.qbk

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@
1111

1212
[/-----------------------------------------------------------------------------]
1313

14+
[heading Boost 1.89]
15+
16+
[*Fixes]
17+
18+
* [issue 3002] Conditionally defined `immediate_executor_type` in `async_base`
19+
* [issue 2999] Used `handshake_timeout` for closing handshake during read operations
20+
* [issue 3003] Added missing `cstdint` header to `detail/cpu_info.hpp`
21+
22+
[*Improvements]
23+
24+
* [issue 3005] Replaced `detail/work_guard.hpp` with `net::executor_work_guard`
25+
* [issue 3016] Fixed portability issues for building tests in MinGW
26+
27+
[*Documentation]
28+
29+
* [issue 3009] Removed moved sections from documentation
30+
* [issue 3009] Removed superfluous log messages from tests
31+
1432
[heading Boost 1.88]
1533

1634
[*Fixes]

include/boost/beast/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
This is a simple integer that is incremented by one every
2121
time a set of code changes is merged to the develop branch.
2222
*/
23-
#define BOOST_BEAST_VERSION 357
23+
#define BOOST_BEAST_VERSION 358
2424

2525
// A string describing BOOST_BEAST_VERSION, that can be used in http headers.
2626
#define BOOST_BEAST_VERSION_STRING "Boost.Beast/" BOOST_STRINGIZE(BOOST_BEAST_VERSION)

0 commit comments

Comments
 (0)