File tree Expand file tree Collapse file tree 5 files changed +18
-8
lines changed Expand file tree Collapse file tree 5 files changed +18
-8
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 2)
16- set (RMQ_SOVERSION_REVISION 0 )
16+ set (RMQ_SOVERSION_REVISION 1 )
1717set (RMQ_SOVERSION_AGE 1)
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
22
3+ ## Changes since v0.4.0:
4+ ### Major changes:
5+ - Removed distro-specific packaging d285d01
6+
7+ ### Bug fixes:
8+ - ` a642602 ` FIX: destroy amqp_envelop_t object in consumer example
9+ - ` 860dd71 ` FIX: correct generation of librabbitmq.pc under CMake
10+ - ` bdda7ab ` FIX: amqp_socket_close() should not be exported from shlib
11+ - ` 24f4131 ` FIX: Use correct buf/len vars when re-starting send()
12+
313## Changes since v0.3.0:
414### New Features/Enhancements:
515- ` amqp_login_with_properties() ` function to connect to a broker sending a
Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ rabbitmq-discuss mailing list:
1616
1717## Latest Stable Version
1818
19- The latest stable release of [ rabbitmq-c is v0.4.0 ] ( https://github.com/alanxz/rabbitmq-c/releases/tag/v0.4.0 ) .
19+ The latest stable release of [ rabbitmq-c is v0.4.1 ] ( https://github.com/alanxz/rabbitmq-c/releases/tag/v0.4.1 ) .
2020A complete list of changes can be found in the [ Change Log] ( ChangeLog.md )
2121
22- The v0.4.0 source tarball can be downloaded from:
22+ The v0.4.1 source tarball can be downloaded from:
2323
24- < https://github.com/alanxz/rabbitmq-c/releases/download/v0.4.0 /rabbitmq-c-0.4.0 .tar.gz >
24+ < https://github.com/alanxz/rabbitmq-c/releases/download/v0.4.1 /rabbitmq-c-0.4.1 .tar.gz >
2525
26- API documentation for v0.4.0 can viewed from:
26+ API documentation for v0.4.0+ can viewed from:
2727
2828< http://alanxz.github.io/rabbitmq-c/docs/0.4.0/ >
2929
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] , [ 4] )
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] , [ 2] )
16- m4_define ( [ soversion_revision] , [ 0 ] )
16+ m4_define ( [ soversion_revision] , [ 1 ] )
1717m4_define ( [ soversion_age] , [ 1] )
1818
1919AC_INIT ( [ rabbitmq-c] , [ major_version.minor_version.micro_version] ,
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ AMQP_BEGIN_DECLS
224224#define AMQP_VERSION_MAJOR 0
225225#define AMQP_VERSION_MINOR 4
226226#define AMQP_VERSION_PATCH 1
227- #define AMQP_VERSION_IS_RELEASE 0
227+ #define AMQP_VERSION_IS_RELEASE 1
228228
229229
230230/**
You can’t perform that action at this time.
0 commit comments