File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
13
13
# 3. If any interfaces have been added since the last public release, then increment age.
14
14
# 4. If any interfaces have been removed since the last public release, then set age to 0.
15
15
16
- set (RMQ_SOVERSION_CURRENT 10 )
16
+ set (RMQ_SOVERSION_CURRENT 11 )
17
17
set (RMQ_SOVERSION_REVISION 0 )
18
- set (RMQ_SOVERSION_AGE 6 )
18
+ set (RMQ_SOVERSION_AGE 7 )
19
19
20
20
include (VersionFunctions )
21
21
get_library_version (RMQ_VERSION )
Original file line number Diff line number Diff line change 1
1
# 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
+
2
15
## v0.14.0 - 2024-03-18
3
16
## Fixed
4
17
- Fix potential stackoverflow in decoding table and array
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ AMQP_BEGIN_DECLS
120
120
#define AMQP_VERSION_MAJOR 0
121
121
#define AMQP_VERSION_MINOR 15
122
122
#define AMQP_VERSION_PATCH 0
123
- #define AMQP_VERSION_IS_RELEASE 0
123
+ #define AMQP_VERSION_IS_RELEASE 1
124
124
125
125
/**
126
126
* \def AMQP_VERSION_CODE
You can’t perform that action at this time.
0 commit comments