From 341ac7591b2b023c81de13312a80d1e824742a1c Mon Sep 17 00:00:00 2001 From: Klemens Morgenstern Date: Mon, 6 Feb 2023 04:22:37 +0800 Subject: [PATCH] Set version to 346. --- CHANGELOG.md | 13 +++++++++++++ CMakeLists.txt | 2 +- include/boost/beast/version.hpp | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e39cabb6ce..68bb205438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +Version 346: + +* beast file_body & file support seek +* file_body buffer size can be configured +* examples & tests use context instead of coroutine +* basic_stream doesn't use try-catch with no-exceptions set +* error categories use numeric id +* timer inside basic_stream uses the right executor +* self-posting is posting to the io-object's executor +* all error_codes use source_locations + +-------------------------------------------------------------------------------- + Version 345: * Warning & typo fixes. diff --git a/CMakeLists.txt b/CMakeLists.txt index 12209f6a16..08046dac3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,7 +83,7 @@ endfunction() # #------------------------------------------------------------------------------- -project (Beast VERSION 336) +project (Beast VERSION 346) 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 e2aec8c09c..4fe6b59ca7 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 345 +#define BOOST_BEAST_VERSION 346 // 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)