File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
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 9 )
17
- set (RMQ_SOVERSION_REVISION 4 )
18
- set (RMQ_SOVERSION_AGE 5 )
16
+ set (RMQ_SOVERSION_CURRENT 10 )
17
+ set (RMQ_SOVERSION_REVISION 0 )
18
+ set (RMQ_SOVERSION_AGE 6 )
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.14.0 - 2024-03-18
3
+ ## Fixed
4
+ - Fix potential stackoverflow in decoding table and array
5
+ - Fix issue with Mach-O version (#758 )
6
+ - Make dependency on OpenSSL in rabbitmq-c.cmake match what is built (#725 )
7
+ - Fix pkg-config generation when CMAKE_INSTALL_DIR is absolute (#733 )
8
+ - Fix issue with amqp_basic_publish blocking in non-blocking mode (#780 )
9
+ - Fix SSL hostname check (#784 )
10
+ - Fix bug in amqp-consume documentation #791
11
+
12
+ ## Changed
13
+ - CMake minimum version is now 3.22
14
+ - OpenSSL minimum version is now 1.1.1
15
+ - Minimum TLS version supported is v1.2 (v1.3 is also supported).
16
+ - OpenSSL ENGINE APIs are conditionally enabled based on availability
17
+
18
+ ## Added
19
+ - Add option to read username/password from file in tools (#781 )
20
+ - Add amqp_ssl_socket_enable_default_verify_paths API to allow loading from default certification paths
21
+ - rabbitmq-c can be compiled against BoringSSL (#814 )
22
+
2
23
## v0.13.0 - 2023-02-05
3
24
## Fixed
4
25
- Fixed missing option to not install static library (#665 )
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 14
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