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 @@ -16,9 +16,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
16
16
# 3. If any interfaces have been added since the last public release, then increment age.
17
17
# 4. If any interfaces have been removed since the last public release, then set age to 0.
18
18
19
- set (RMQ_SOVERSION_CURRENT 8 )
20
- set (RMQ_SOVERSION_REVISION 1 )
21
- set (RMQ_SOVERSION_AGE 4 )
19
+ set (RMQ_SOVERSION_CURRENT 9 )
20
+ set (RMQ_SOVERSION_REVISION 0 )
21
+ set (RMQ_SOVERSION_AGE 5 )
22
22
23
23
math (EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE} " )
24
24
math (EXPR RMQ_SOVERSION_MINOR "${RMQ_SOVERSION_AGE} " )
Original file line number Diff line number Diff line change 1
1
# Change Log
2
+ ## v0.11.0 - 2021-03-31
3
+ ## Added:
4
+ - rabbitmq-c-config.cmake is now generated (#611 )
5
+ - rabbitmq-c can be compiled on Win32 using pthreads (#613 )
6
+ - Add amqp_set_ssl_engine API to allow setting OpenSSL engine (#618 )
7
+ - Add amqp_ssl_socket_set_key_engine API to allow setting OpenSSL engine (#618 )
8
+ - Add support use of password-protected SSL keys (#661 )
9
+
10
+ ## Changed
11
+ - Update OpenSSL library initialization to current best practices (#603 )
12
+ - Updates to OpenSSL to support v3.0.0 (#654 , 627)
13
+
14
+ ## Fixed:
15
+ - OpenSSL symbol clash when compiling on Win32 (#583 )
16
+ - Restore correct non-blocking behavior using OpenSSL v1.1.1 (#586 )
17
+ - Disable harmless secure CRT compile warnings on Win32 (#588 )
18
+ - Fix unused parameter warnings on Win32 (#591 )
19
+ - Fix invalid format in generated pkg-config file (#599 )
20
+ - Fix invalid AMQP_STATUS_HEARTBEAT_TIMEOUT (#557 )
21
+ - Fix incorrect port when using --server flag in CLI tools
22
+
2
23
## v0.10.0 - 2019-12-01
3
24
## Added:
4
25
- amqp_ssl_socket_get_context can be used to get the current OpenSSL CTX*
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ AMQP_BEGIN_DECLS
221
221
#define AMQP_VERSION_MAJOR 0
222
222
#define AMQP_VERSION_MINOR 11
223
223
#define AMQP_VERSION_PATCH 0
224
- #define AMQP_VERSION_IS_RELEASE 0
224
+ #define AMQP_VERSION_IS_RELEASE 1
225
225
226
226
/**
227
227
* \def AMQP_VERSION_CODE
You can’t perform that action at this time.
0 commit comments