Skip to content

Commit

Permalink
Preparation for v0.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alanxz committed Dec 2, 2019
1 parent fc85be7 commit ffe918a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
# 3. If any interfaces have been added since the last public release, then increment age.
# 4. If any interfaces have been removed since the last public release, then set age to 0.

set(RMQ_SOVERSION_CURRENT 7)
set(RMQ_SOVERSION_REVISION 1)
set(RMQ_SOVERSION_AGE 3)
set(RMQ_SOVERSION_CURRENT 8)
set(RMQ_SOVERSION_REVISION 0)
set(RMQ_SOVERSION_AGE 4)

math(EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE}")
math(EXPR RMQ_SOVERSION_MINOR "${RMQ_SOVERSION_AGE}")
Expand Down
15 changes: 15 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Change Log
## v0.10.0 - 2019-12-01
## Added:
- amqp_ssl_socket_get_context can be used to get the current OpenSSL CTX*
associated with a connection.

## Changed:
- openssl: missing OpenSSL config is ignored as an OpenSSL init error (#523)
- AMQP_DEFAULT_MAX_CHANNELS is now set to 2047 to follow current default channel
limit in the RabbitMQ broker. (#513)

## Fixed:
- add additional input validation to prevent integer overflow when parsing a
frame header. This addresses CVE-2019-18609.


## v0.9.0 - 2018-05-08
### Added:
- amqp-publish: added support for specifying headers via the -H flag
Expand Down
2 changes: 1 addition & 1 deletion librabbitmq/amqp.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ AMQP_BEGIN_DECLS
#define AMQP_VERSION_MAJOR 0
#define AMQP_VERSION_MINOR 10
#define AMQP_VERSION_PATCH 0
#define AMQP_VERSION_IS_RELEASE 0
#define AMQP_VERSION_IS_RELEASE 1

/**
* \def AMQP_VERSION_CODE
Expand Down

0 comments on commit ffe918a

Please sign in to comment.