Skip to content

Commit 77e3805

Browse files
committed
Preparation for v0.9.0 release.
1 parent 45067a0 commit 77e3805

File tree

3 files changed

+40
-6
lines changed

3 files changed

+40
-6
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
1616
# 3. If any interfaces have been added since the last public release, then increment age.
1717
# 4. If any interfaces have been removed since the last public release, then set age to 0.
1818

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

2323
math(EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE}")
2424
math(EXPR RMQ_SOVERSION_MINOR "${RMQ_SOVERSION_AGE}")

ChangeLog.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
11
# 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+
236
## v0.8.0 - 2016-04-09
337
### Added:
438
- SSL: peer certificate and hostname validation can now be controlled separately

librabbitmq/amqp.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ AMQP_BEGIN_DECLS
219219
*/
220220

221221
#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
225225

226226
/**
227227
* \def AMQP_VERSION_CODE

0 commit comments

Comments
 (0)