Skip to content

Commit 124722b

Browse files
committed
Preparation for v0.14.0 release.
Signed-off-by: GitHub <noreply@github.com>
1 parent ea9acb8 commit 124722b

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 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 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)
1919

2020
include(VersionFunctions)
2121
get_library_version(RMQ_VERSION)

ChangeLog.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
# 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+
223
## v0.13.0 - 2023-02-05
324
## Fixed
425
- Fixed missing option to not install static library (#665)

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 14
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)