Skip to content

Commit 84b81cd

Browse files
committed
Preparation for v0.15.0 release.
Signed-off-by: GitHub <noreply@github.com>
1 parent 22202e1 commit 84b81cd

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)
1717
set(RMQ_SOVERSION_REVISION 0)
18-
set(RMQ_SOVERSION_AGE 6)
18+
set(RMQ_SOVERSION_AGE 7)
1919

2020
include(VersionFunctions)
2121
get_library_version(RMQ_VERSION)

ChangeLog.md

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

include/rabbitmq-c/amqp.h

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

0 commit comments

Comments
 (0)