summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2014-09-13 22:12:15 -0700
committerAlan Antonuk <alan.antonuk@gmail.com>2014-09-13 22:25:32 -0700
commit2b5d606bca429deed616339f460897aa41819a63 (patch)
treeebda932ef4a9cb594f126410243345844d8fc12c
parent7188e5dce20e56e43314ed3f9c61c8717f961eff (diff)
downloadrabbitmq-c-github-ask-2b5d606bca429deed616339f460897aa41819a63.tar.gz
Preparation for v0.5.2 release.
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog.md8
-rw-r--r--README.md6
-rw-r--r--configure.ac2
-rw-r--r--librabbitmq/amqp.h2
5 files changed, 14 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ae9d98c..ffd2295 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 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}")
diff --git a/ChangeLog.md b/ChangeLog.md
index c19a1c0..6907e76 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -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
diff --git a/README.md b/README.md
index 4f62ce9..d25e2f5 100644
--- a/README.md
+++ b/README.md
@@ -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:
diff --git a/configure.ac b/configure.ac
index 6d465b0..2efd227 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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],
diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h
index b120d83..d85c160 100644
--- a/librabbitmq/amqp.h
+++ b/librabbitmq/amqp.h
@@ -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
/**