Skip to content

Commit 2b5d606

Browse files
committed
Preparation for v0.5.2 release.
1 parent 7188e5d commit 2b5d606

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1515
set(RMQ_SOVERSION_CURRENT 3)
16-
set(RMQ_SOVERSION_REVISION 1)
16+
set(RMQ_SOVERSION_REVISION 2)
1717
set(RMQ_SOVERSION_AGE 2)
1818

1919
math(EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE}")

ChangeLog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Change Log
2+
## Changes since v0.5.1 (a.k.a., v0.5.2)
3+
- `fcdf0f8` Autoconf: check for htonll as declaration in a header file
4+
- `5790ec7` SSL: correctly report hostname verification errors.
5+
- `d60c28c` Build: disable OpenSSL deprecation warnings on OSX
6+
- `072191a` Lib: include platform, version and copyright in AMQP handshake
7+
- `8b448c6` Examples: print message body in amqp[s]_listen[q] examples
8+
- `7188e5d` Tools: Add flag to set prefetch for amqp-consume tool
9+
210
## Changes since v0.5.0 (a.k.a., v0.5.1)
311
### Enhancements:
412
- `a566929` SSL: Add support for wildcards in hostname verification (Mike

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ rabbitmq-discuss mailing list:
1616

1717
## Latest Stable Version
1818

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

22-
The v0.5.0 source tarball can be downloaded from:
22+
The v0.5.2 source tarball can be downloaded from:
2323

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

2626
API documentation for v0.5.0+ can viewed from:
2727

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ m4_define([micro_version], [2])
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.
1515
m4_define([soversion_current], [3])
16-
m4_define([soversion_revision], [1])
16+
m4_define([soversion_revision], [2])
1717
m4_define([soversion_age], [2])
1818

1919
AC_INIT([rabbitmq-c], [major_version.minor_version.micro_version],

librabbitmq/amqp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ AMQP_BEGIN_DECLS
225225
#define AMQP_VERSION_MAJOR 0
226226
#define AMQP_VERSION_MINOR 5
227227
#define AMQP_VERSION_PATCH 2
228-
#define AMQP_VERSION_IS_RELEASE 0
228+
#define AMQP_VERSION_IS_RELEASE 1
229229

230230

231231
/**

0 commit comments

Comments
 (0)