Skip to content

Commit caad0ef

Browse files
committed
Preparation for v0.8.0 release.
1 parent 6d8726c commit caad0ef

File tree

5 files changed

+39
-9
lines changed

5 files changed

+39
-9
lines changed

CMakeLists.txt

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

20-
set(RMQ_SOVERSION_CURRENT 5)
21-
set(RMQ_SOVERSION_REVISION 4)
22-
set(RMQ_SOVERSION_AGE 1)
20+
set(RMQ_SOVERSION_CURRENT 6)
21+
set(RMQ_SOVERSION_REVISION 0)
22+
set(RMQ_SOVERSION_AGE 2)
2323

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

ChangeLog.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
11
# Change Log
2+
## v0.8.0 - 2016-04-09
3+
### Added:
4+
- SSL: peer certificate and hostname validation can now be controlled separately
5+
using `amqp_ssl_socket_set_verify_peer` and
6+
`amqp_ssl_socket_set_verify_hostname`.
7+
- SSL: the desire SSL version range can now be specified using the
8+
`amqp_ssl_socket_set_ssl_versions` function.
9+
- Add flags to SSL examples on controlling hostname verification.
10+
11+
### Changed:
12+
- SSL: SSLv2, and SSLv3 have been disabled by default.
13+
- SSL: OpenSSL hostname validation has been improved.
14+
- Win32 debug information is built with /Z7 on MSVC to embed debug info instead
15+
of using a .pdb
16+
17+
### Fixed:
18+
- Connection failure results in hang on Win32 (#297, #346)
19+
- Rabbitmq-c may block when attempting to close an SSL socket (#313)
20+
- amqp_parse_url does not correctly initialize default parameters (#319)
21+
- x509 objects are leaked in verify_hostname (#323)
22+
- TCP_NOPUSH doesn't work under cygwin (#335)
23+
24+
### Deprecated
25+
- SSL: `amqp_ssl_socket_set_verify` is being replaced by
26+
`amqp_ssl_socket_set_verify_peer` and `amqp_ssl_socket_set_verify_hostname`.
27+
28+
### Removed:
29+
- OpenVMS build system and related files.
30+
- Unmaintained PolarSSL, CyaSSL, and gnuTLS SSL backends
31+
232
## Changes since v0.7.0 (a.k.a., v0.7.1)
333
- `41fa9df` Autoconf: add missing files in build system
434
- `ef73c06` Win32: Use WSAEWOULDBLOCK instead of EWOULDBLOCK on Win32

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ The latest stable release of rabbitmq-c can be found at:
2222

2323
## Documentation
2424

25-
API documentation for v0.5.0+ can viewed from:
25+
API documentation for v0.8.0+ can viewed from:
2626

27-
<http://alanxz.github.io/rabbitmq-c/docs/0.5.0/>
27+
<http://alanxz.github.io/rabbitmq-c/docs/0.8.0/>
2828

2929
## Getting started
3030

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ m4_define([micro_version], [0])
1212
# 2. If any interfaces have been added, removed, or changed since the last update, increment current and set revision to 0.
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.
15-
m4_define([soversion_current], [5])
16-
m4_define([soversion_revision], [4])
17-
m4_define([soversion_age], [1])
15+
m4_define([soversion_current], [6])
16+
m4_define([soversion_revision], [0])
17+
m4_define([soversion_age], [2])
1818

1919
AC_INIT([rabbitmq-c], [major_version.minor_version.micro_version],
2020
[https://github.com/alanxz/rabbitmq-c/issues], [rabbitmq-c],

librabbitmq/amqp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ AMQP_BEGIN_DECLS
225225
#define AMQP_VERSION_MAJOR 0
226226
#define AMQP_VERSION_MINOR 8
227227
#define AMQP_VERSION_PATCH 0
228-
#define AMQP_VERSION_IS_RELEASE 0
228+
#define AMQP_VERSION_IS_RELEASE 1
229229

230230

231231
/**

0 commit comments

Comments
 (0)