Skip to content

Commit

Permalink
Preparation for v0.15.0 release.
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
alanxz committed Nov 20, 2024
1 parent 22202e1 commit 84b81cd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,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 10)
set(RMQ_SOVERSION_CURRENT 11)
set(RMQ_SOVERSION_REVISION 0)
set(RMQ_SOVERSION_AGE 6)
set(RMQ_SOVERSION_AGE 7)

include(VersionFunctions)
get_library_version(RMQ_VERSION)
Expand Down
13 changes: 13 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# Change Log
## v0.15.0 - 2024-11-19
## Fixed
- Warning on MacOS about incompatible function declaration
- Logic when decoding AMQP data after bad data may cause crash (#837)
- Use SSL_get1_peer_certificate when compiling against OpenSSL 3+

## Changed
- Updates to various github actions.

## Added
- Add amqp_publisher_confirm_wait function (#841)
- Add amqp_literal_bytes macro (#844)

## v0.14.0 - 2024-03-18
## Fixed
- Fix potential stackoverflow in decoding table and array
Expand Down
2 changes: 1 addition & 1 deletion include/rabbitmq-c/amqp.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ AMQP_BEGIN_DECLS
#define AMQP_VERSION_MAJOR 0
#define AMQP_VERSION_MINOR 15
#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 84b81cd

Please sign in to comment.