File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
1313# 3. If any interfaces have been added since the last public release, then increment age.
1414# 4. If any interfaces have been removed since the last public release, then set age to 0.
1515
16- set (RMQ_SOVERSION_CURRENT 10 )
16+ set (RMQ_SOVERSION_CURRENT 11 )
1717set (RMQ_SOVERSION_REVISION 0)
18- set (RMQ_SOVERSION_AGE 6 )
18+ set (RMQ_SOVERSION_AGE 7 )
1919
2020include (VersionFunctions)
2121get_library_version(RMQ_VERSION)
Original file line number Diff line number Diff line change 11# Change Log
2+ ## v0.15.0 - 2024-11-19
3+ ## Fixed
4+ - Warning on MacOS about incompatible function declaration
5+ - Logic when decoding AMQP data after bad data may cause crash (#837 )
6+ - Use SSL_get1_peer_certificate when compiling against OpenSSL 3+
7+
8+ ## Changed
9+ - Updates to various github actions.
10+
11+ ## Added
12+ - Add amqp_publisher_confirm_wait function (#841 )
13+ - Add amqp_literal_bytes macro (#844 )
14+
215## v0.14.0 - 2024-03-18
316## Fixed
417- Fix potential stackoverflow in decoding table and array
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ AMQP_BEGIN_DECLS
120120#define AMQP_VERSION_MAJOR 0
121121#define AMQP_VERSION_MINOR 15
122122#define AMQP_VERSION_PATCH 0
123- #define AMQP_VERSION_IS_RELEASE 0
123+ #define AMQP_VERSION_IS_RELEASE 1
124124
125125/**
126126 * \def AMQP_VERSION_CODE
You can’t perform that action at this time.
0 commit comments