File tree Expand file tree Collapse file tree 5 files changed +14
-6
lines changed Expand file tree Collapse file tree 5 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
1313# 4. If any interfaces have been removed since the last public release, then set age to 0.
1414
1515set (RMQ_SOVERSION_CURRENT 3)
16- set (RMQ_SOVERSION_REVISION 1 )
16+ set (RMQ_SOVERSION_REVISION 2 )
1717set (RMQ_SOVERSION_AGE 2)
1818
1919math (EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE} " )
Original file line number Diff line number Diff line change 11# Change Log
2+ ## Changes since v0.5.1 (a.k.a., v0.5.2)
3+ - ` fcdf0f8 ` Autoconf: check for htonll as declaration in a header file
4+ - ` 5790ec7 ` SSL: correctly report hostname verification errors.
5+ - ` d60c28c ` Build: disable OpenSSL deprecation warnings on OSX
6+ - ` 072191a ` Lib: include platform, version and copyright in AMQP handshake
7+ - ` 8b448c6 ` Examples: print message body in amqp[ s] _ listen[ q] examples
8+ - ` 7188e5d ` Tools: Add flag to set prefetch for amqp-consume tool
9+
210## Changes since v0.5.0 (a.k.a., v0.5.1)
311### Enhancements:
412- ` a566929 ` SSL: Add support for wildcards in hostname verification (Mike
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ rabbitmq-discuss mailing list:
1616
1717## Latest Stable Version
1818
19- The latest stable release of [ rabbitmq-c is v0.5.1 ] ( https://github.com/alanxz/rabbitmq-c/releases/tag/v0.5.1 ) .
19+ The latest stable release of [ rabbitmq-c is v0.5.2 ] ( https://github.com/alanxz/rabbitmq-c/releases/tag/v0.5.2 ) .
2020A complete list of changes can be found in the [ Change Log] ( ChangeLog.md )
2121
22- The v0.5.0 source tarball can be downloaded from:
22+ The v0.5.2 source tarball can be downloaded from:
2323
24- < https://github.com/alanxz/rabbitmq-c/releases/download/v0.5.1 /rabbitmq-c-0.5.1 .tar.gz >
24+ < https://github.com/alanxz/rabbitmq-c/releases/download/v0.5.2 /rabbitmq-c-0.5.2 .tar.gz >
2525
2626API documentation for v0.5.0+ can viewed from:
2727
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ m4_define([micro_version], [2])
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.
1515m4_define ( [ soversion_current] , [ 3] )
16- m4_define ( [ soversion_revision] , [ 1 ] )
16+ m4_define ( [ soversion_revision] , [ 2 ] )
1717m4_define ( [ soversion_age] , [ 2] )
1818
1919AC_INIT ( [ rabbitmq-c] , [ major_version.minor_version.micro_version] ,
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ AMQP_BEGIN_DECLS
225225#define AMQP_VERSION_MAJOR 0
226226#define AMQP_VERSION_MINOR 5
227227#define AMQP_VERSION_PATCH 2
228- #define AMQP_VERSION_IS_RELEASE 0
228+ #define AMQP_VERSION_IS_RELEASE 1
229229
230230
231231/**
You can’t perform that action at this time.
0 commit comments