Skip to content

Commit

Permalink
Preparation for v0.5.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanxz committed Sep 14, 2014
1 parent 7188e5d commit 2b5d606
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 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 3)
set(RMQ_SOVERSION_REVISION 1)
set(RMQ_SOVERSION_REVISION 2)
set(RMQ_SOVERSION_AGE 2)

math(EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE}")
Expand Down
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Change Log
## Changes since v0.5.1 (a.k.a., v0.5.2)
- `fcdf0f8` Autoconf: check for htonll as declaration in a header file
- `5790ec7` SSL: correctly report hostname verification errors.
- `d60c28c` Build: disable OpenSSL deprecation warnings on OSX
- `072191a` Lib: include platform, version and copyright in AMQP handshake
- `8b448c6` Examples: print message body in amqp[s]_listen[q] examples
- `7188e5d` Tools: Add flag to set prefetch for amqp-consume tool

## Changes since v0.5.0 (a.k.a., v0.5.1)
### Enhancements:
- `a566929` SSL: Add support for wildcards in hostname verification (Mike
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ rabbitmq-discuss mailing list:

## Latest Stable Version

The latest stable release of [rabbitmq-c is v0.5.1](https://github.com/alanxz/rabbitmq-c/releases/tag/v0.5.1).
The latest stable release of [rabbitmq-c is v0.5.2](https://github.com/alanxz/rabbitmq-c/releases/tag/v0.5.2).
A complete list of changes can be found in the [Change Log](ChangeLog.md)

The v0.5.0 source tarball can be downloaded from:
The v0.5.2 source tarball can be downloaded from:

<https://github.com/alanxz/rabbitmq-c/releases/download/v0.5.1/rabbitmq-c-0.5.1.tar.gz>
<https://github.com/alanxz/rabbitmq-c/releases/download/v0.5.2/rabbitmq-c-0.5.2.tar.gz>

API documentation for v0.5.0+ can viewed from:

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ m4_define([micro_version], [2])
# 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], [3])
m4_define([soversion_revision], [1])
m4_define([soversion_revision], [2])
m4_define([soversion_age], [2])

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 @@ -225,7 +225,7 @@ AMQP_BEGIN_DECLS
#define AMQP_VERSION_MAJOR 0
#define AMQP_VERSION_MINOR 5
#define AMQP_VERSION_PATCH 2
#define AMQP_VERSION_IS_RELEASE 0
#define AMQP_VERSION_IS_RELEASE 1


/**
Expand Down

0 comments on commit 2b5d606

Please sign in to comment.