File tree Expand file tree Collapse file tree 3 files changed +40
-6
lines changed Expand file tree Collapse file tree 3 files changed +40
-6
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 6 )
20
- set (RMQ_SOVERSION_REVISION 1 )
21
- set (RMQ_SOVERSION_AGE 2 )
19
+ set (RMQ_SOVERSION_CURRENT 7 )
20
+ set (RMQ_SOVERSION_REVISION 0 )
21
+ set (RMQ_SOVERSION_AGE 3 )
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.9.0 - 2018-05-08
3
+ ### Added:
4
+ - amqp-publish: added support for specifying headers via the -H flag
5
+ - Add support for specifying timeout for amqp_login calls via
6
+ amqp_set_handshake_timeout
7
+ - Add support for specifying timeouts in RPC-style AMQP methods via
8
+ amqp_set_rpc_timeout
9
+ - Add define for ` AMQP_DEFAULT_VHOST `
10
+ - Support for SSL SNI
11
+ - Support for OpenSSL v1.1.0
12
+
13
+ ### Changed:
14
+ - rabbitmq-c now requires Windows Vista or better
15
+ - rabbitmq-c enables TCP keep-alive by default on platforms that support it
16
+ - dropped support for compiling rabbitmq-c without threading support
17
+ - OpenSSL is no longer un-intialized automatically by default. OpenSSL can be
18
+ explicitly initialized by calling amqp_initialize_ssl_library and
19
+ uninitialized by calling amqp_uninitialize_ssl_library.
20
+
21
+ ### Fixed:
22
+ - Correct bugs in processing of --url flag in tools (#364 ).
23
+ - Improve documentation on AMQP_SASL_METHOD_EXTERNAL (#349 )
24
+ - Improve support for compiling under mingw-w64
25
+ - Better support for handing SIGPIPE on Linux over SSL (#401 )
26
+ - Improve publish performance on Linux by not specifying MSG_MORE on last part
27
+ of message.
28
+ - Fix connection logic where multiple hostnames won't be tried if connection to
29
+ doesn't fail immediately (#430 )
30
+
31
+ ### Removed:
32
+ - autotools build system has been removed
33
+ - many duplicate amqps_ * examples, they did not add a lot of value
34
+
35
+
2
36
## v0.8.0 - 2016-04-09
3
37
### Added:
4
38
- SSL: peer certificate and hostname validation can now be controlled separately
Original file line number Diff line number Diff line change @@ -219,9 +219,9 @@ AMQP_BEGIN_DECLS
219
219
*/
220
220
221
221
#define AMQP_VERSION_MAJOR 0
222
- #define AMQP_VERSION_MINOR 8
223
- #define AMQP_VERSION_PATCH 1
224
- #define AMQP_VERSION_IS_RELEASE 0
222
+ #define AMQP_VERSION_MINOR 9
223
+ #define AMQP_VERSION_PATCH 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