Skip to content

Commit ffe918a

Browse files
committed
Preparation for v0.10.0 release
1 parent fc85be7 commit ffe918a

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

2323
math(EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE}")
2424
math(EXPR RMQ_SOVERSION_MINOR "${RMQ_SOVERSION_AGE}")

ChangeLog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
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

librabbitmq/amqp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)