mirror of
https://github.com/boostorg/beast.git
synced 2025-06-25 03:51:36 +02:00
Version 357
This commit is contained in:
committed by
Mohammad Nejati
parent
e0884660f4
commit
fecd29050a
13
CHANGELOG.md
13
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()`
|
||||
|
@ -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 ()
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user