File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
1616# 3. If any interfaces have been added since the last public release, then increment age.
1717# 4. If any interfaces have been removed since the last public release, then set age to 0.
1818
19- set (RMQ_SOVERSION_CURRENT 7 )
20- set (RMQ_SOVERSION_REVISION 1 )
21- set (RMQ_SOVERSION_AGE 3 )
19+ set (RMQ_SOVERSION_CURRENT 8 )
20+ set (RMQ_SOVERSION_REVISION 0 )
21+ set (RMQ_SOVERSION_AGE 4 )
2222
2323math (EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE} " )
2424math (EXPR RMQ_SOVERSION_MINOR "${RMQ_SOVERSION_AGE} " )
Original file line number Diff line number Diff line change 11# Change Log
2+ ## v0.10.0 - 2019-12-01
3+ ## Added:
4+ - amqp_ssl_socket_get_context can be used to get the current OpenSSL CTX*
5+ associated with a connection.
6+
7+ ## Changed:
8+ - openssl: missing OpenSSL config is ignored as an OpenSSL init error (#523 )
9+ - AMQP_DEFAULT_MAX_CHANNELS is now set to 2047 to follow current default channel
10+ limit in the RabbitMQ broker. (#513 )
11+
12+ ## Fixed:
13+ - add additional input validation to prevent integer overflow when parsing a
14+ frame header. This addresses CVE-2019 -18609.
15+
16+
217## v0.9.0 - 2018-05-08
318### Added:
419- amqp-publish: added support for specifying headers via the -H flag
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ AMQP_BEGIN_DECLS
221221#define AMQP_VERSION_MAJOR 0
222222#define AMQP_VERSION_MINOR 10
223223#define AMQP_VERSION_PATCH 0
224- #define AMQP_VERSION_IS_RELEASE 0
224+ #define AMQP_VERSION_IS_RELEASE 1
225225
226226/**
227227 * \def AMQP_VERSION_CODE
You can’t perform that action at this time.
0 commit comments