From eca2999c6d2cff644847b5fee9f9ec0c22702b98 Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Sun, 25 Aug 2013 20:42:28 -0700 Subject: Prep for v0.4.1 release --- CMakeLists.txt | 2 +- ChangeLog.md | 10 ++++++++++ README.md | 8 ++++---- configure.ac | 4 ++-- librabbitmq/amqp.h | 2 +- 5 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ff1af37..6f74ea0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) # 4. If any interfaces have been removed since the last public release, then set age to 0. set(RMQ_SOVERSION_CURRENT 2) -set(RMQ_SOVERSION_REVISION 0) +set(RMQ_SOVERSION_REVISION 1) set(RMQ_SOVERSION_AGE 1) math(EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE}") diff --git a/ChangeLog.md b/ChangeLog.md index a8e4231..d96e345 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,15 @@ # Change Log +## Changes since v0.4.0: +### Major changes: +- Removed distro-specific packaging d285d01 + +### Bug fixes: +- `a642602` FIX: destroy amqp_envelop_t object in consumer example +- `860dd71` FIX: correct generation of librabbitmq.pc under CMake +- `bdda7ab` FIX: amqp_socket_close() should not be exported from shlib +- `24f4131` FIX: Use correct buf/len vars when re-starting send() + ## Changes since v0.3.0: ### New Features/Enhancements: - `amqp_login_with_properties()` function to connect to a broker sending a diff --git a/README.md b/README.md index 16eceac..faf1b62 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ rabbitmq-discuss mailing list: ## Latest Stable Version -The latest stable release of [rabbitmq-c is v0.4.0](https://github.com/alanxz/rabbitmq-c/releases/tag/v0.4.0). +The latest stable release of [rabbitmq-c is v0.4.1](https://github.com/alanxz/rabbitmq-c/releases/tag/v0.4.1). A complete list of changes can be found in the [Change Log](ChangeLog.md) -The v0.4.0 source tarball can be downloaded from: +The v0.4.1 source tarball can be downloaded from: - + -API documentation for v0.4.0 can viewed from: +API documentation for v0.4.0+ can viewed from: diff --git a/configure.ac b/configure.ac index 6601284..0559f8f 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.59]) m4_define([major_version], [0]) m4_define([minor_version], [4]) -m4_define([micro_version], [0]) +m4_define([micro_version], [1]) # Follow all steps below in order to calculate new ABI version when updating the library # NOTE: THIS IS UNRELATED to the actual project version @@ -13,7 +13,7 @@ m4_define([micro_version], [0]) # 3. If any interfaces have been added since the last public release, then increment age. # 4. If any interfaces have been removed since the last public release, then set age to 0. m4_define([soversion_current], [2]) -m4_define([soversion_revision], [0]) +m4_define([soversion_revision], [1]) m4_define([soversion_age], [1]) AC_INIT([rabbitmq-c], [major_version.minor_version.micro_version], diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h index 968f7fa..337b575 100644 --- a/librabbitmq/amqp.h +++ b/librabbitmq/amqp.h @@ -224,7 +224,7 @@ AMQP_BEGIN_DECLS #define AMQP_VERSION_MAJOR 0 #define AMQP_VERSION_MINOR 4 #define AMQP_VERSION_PATCH 1 -#define AMQP_VERSION_IS_RELEASE 0 +#define AMQP_VERSION_IS_RELEASE 1 /** -- cgit v1.2.1