File tree Expand file tree Collapse file tree 5 files changed +30
-6
lines changed Expand file tree Collapse file tree 5 files changed +30
-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 0 )
16+ set (RMQ_SOVERSION_REVISION 1 )
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.0 (a.k.a., v0.5.1)
3+ ### Enhancements:
4+ - ` a566929 ` SSL: Add support for wildcards in hostname verification (Mike
5+ Steinert)
6+ - ` a78aa8a ` Lib: Use poll(2) instead of select(2) for timeouts on sockets.
7+ - ` 357bdb3 ` Lib: support for specifying frame and decoding pool sizes. (Mike
8+ Stitt)
9+ - ` 8956003 ` Lib: improve invalid frame detection code.
10+
11+ ### Bug fixes:
12+ - ` b852f84 ` Lib: Add missing amqp_get_server_properties() function.
13+ - ` 7001e82 ` Lib: Add missing ssize_t on Win32 (emazv72)
14+ - ` c2ce2cb ` Lib: Correctly specify WINVER on Win32 when unspecified.
15+ - ` fe844e4 ` CMake: specify -DHAVE_CONFIG_H in examples.
16+ - ` 932de5f ` Lib: correct time computation on Win32 (jestor)
17+ - ` 3e83192 ` HPUX: use gethrtime on HP-UX for timers.
18+ - ` cb1b44e ` HPUX: correct include location of sys/uio.h
19+ - ` 8ce585d ` Lib: incorrect OOM condition when 0-lenth exchange name is received.
20+ - ` c7716b8 ` CMake: correct htonll detection code on platforms defined with a
21+ macro.
22+ - ` 4dc4eda ` Lib: remove unused assignment.
23+ - ` 45302cf ` Lib: remove range-check of channel-ids.
24+
25+
226## Changes since v0.4.1 (a.k.a., v0.5.0):
327### Major changes:
428- Add amqp_get_broker_properties() function 5c7c40adc1
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.0 ] ( https://github.com/alanxz/rabbitmq-c/releases/tag/v0.5.0 ) .
19+ The latest stable release of [ rabbitmq-c is v0.5.1 ] ( https://github.com/alanxz/rabbitmq-c/releases/tag/v0.5.1 ) .
2020A complete list of changes can be found in the [ Change Log] ( ChangeLog.md )
2121
2222The v0.5.0 source tarball can be downloaded from:
2323
24- < https://github.com/alanxz/rabbitmq-c/releases/download/v0.5.0 /rabbitmq-c-0.5.0 .tar.gz >
24+ < https://github.com/alanxz/rabbitmq-c/releases/download/v0.5.1 /rabbitmq-c-0.5.1 .tar.gz >
2525
2626API documentation for v0.5.0+ can viewed from:
2727
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ AC_PREREQ([2.59])
33
44m4_define ( [ major_version] , [ 0] )
55m4_define ( [ minor_version] , [ 5] )
6- m4_define ( [ micro_version] , [ 0 ] )
6+ m4_define ( [ micro_version] , [ 1 ] )
77
88# Follow all steps below in order to calculate new ABI version when updating the library
99# NOTE: THIS IS UNRELATED to the actual project version
@@ -13,7 +13,7 @@ m4_define([micro_version], [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.
1515m4_define ( [ soversion_current] , [ 3] )
16- m4_define ( [ soversion_revision] , [ 0 ] )
16+ m4_define ( [ soversion_revision] , [ 1 ] )
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 1
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