Skip to content

Commit ef10d6e

Browse files
committed
Version 355
1 parent 375b0b5 commit ef10d6e

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Version 355:
2+
3+
* awaitable examples are simplified
4+
* server-flex-awaitable example demonstrates an explicit, graceful shutdown
5+
* Add fuzzing targets
6+
* Fix overloads that are ambiguous when using default completion tokens
7+
* Fix misplaced static_assert in `http::basic_fields` move-assignment operator
8+
* Fix narrowing conversion in `read_size_hint_db()`
9+
10+
--------------------------------------------------------------------------------
11+
112
Version 354:
213

314
* `ssl_stream` and `flat_stream` are deprecated (Use `net::ssl::stream` instead)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ endfunction()
8383
#
8484
#-------------------------------------------------------------------------------
8585

86-
project (Beast VERSION 354)
86+
project (Beast VERSION 355)
8787

8888
set_property (GLOBAL PROPERTY USE_FOLDERS ON)
8989
option (Beast_BUILD_EXAMPLES "Build examples" ON)

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 354
23+
#define BOOST_BEAST_VERSION 355
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)