diff --git a/CHANGELOG.md b/CHANGELOG.md index e39cabb6..68bb2054 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 12209f6a..08046dac 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 e2aec8c0..4fe6b59c 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)