Set version to 346.

This commit is contained in:
Klemens Morgenstern
2023-02-06 04:22:37 +08:00
parent 1d965752b2
commit 341ac7591b
3 changed files with 15 additions and 2 deletions

View File

@@ -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: Version 345:
* Warning & typo fixes. * Warning & typo fixes.

View File

@@ -83,7 +83,7 @@ endfunction()
# #
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
project (Beast VERSION 336) project (Beast VERSION 346)
set_property (GLOBAL PROPERTY USE_FOLDERS ON) set_property (GLOBAL PROPERTY USE_FOLDERS ON)
option (Beast_BUILD_EXAMPLES "Build examples" ON) option (Beast_BUILD_EXAMPLES "Build examples" ON)

View File

@@ -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 345 #define BOOST_BEAST_VERSION 346
// 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)