Skip to content

Commit

Permalink
Prep for v0.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alanxz committed Aug 26, 2013
1 parent 24f4131 commit 438c199
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
10 changes: 10 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

<https://github.com/alanxz/rabbitmq-c/releases/download/v0.4.0/rabbitmq-c-0.4.0.tar.gz>
<https://github.com/alanxz/rabbitmq-c/releases/download/v0.4.1/rabbitmq-c-0.4.1.tar.gz>

API documentation for v0.4.0 can viewed from:
API documentation for v0.4.0+ can viewed from:

<http://alanxz.github.io/rabbitmq-c/docs/0.4.0/>

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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],
Expand Down
2 changes: 1 addition & 1 deletion librabbitmq/amqp.h
Original file line number Diff line number Diff line change
Expand Up @@ -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


/**
Expand Down

0 comments on commit 438c199

Please sign in to comment.