From fecd29050a07c9e256d967af3dc0302493253337 Mon Sep 17 00:00:00 2001 From: Mohammad Nejati Date: Fri, 28 Feb 2025 07:41:47 +0000 Subject: [PATCH] Version 357 --- 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 0c3e4a40..3218da51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +Version 357: + +* Added new examples for Unix domain sockets +* Added SSL/TLS Certificate section to documentation +* Updated SSL examples to verify peer certificate hostname +* Improved documentation of `websocket::stream::async_close` +* WebSockets: Peer pings are counted as activity for `idle_timeout` +* Fixed out-of-band access issue in `iequals` function +* Removed Boost.Scope dependency from examples +* Refactored CMakeLists + +-------------------------------------------------------------------------------- + Version 356: * Added `error_code` overload for `basic_fields::insert()` diff --git a/CMakeLists.txt b/CMakeLists.txt index f6d714bb..031f9bcd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ # #------------------------------------------------- cmake_minimum_required(VERSION 3.8...3.20) -set(BOOST_BEAST_VERSION 356) +set(BOOST_BEAST_VERSION 357) if (BOOST_SUPERPROJECT_VERSION) set(BOOST_BEAST_VERSION ${BOOST_SUPERPROJECT_VERSION}) endif () diff --git a/include/boost/beast/version.hpp b/include/boost/beast/version.hpp index b047fbd9..53106832 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 356 +#define BOOST_BEAST_VERSION 357 // 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)