Skip to content

Commit a536516

Browse files
committed
Preparation for v0.7.1 release.
1 parent 0ac6430 commit a536516

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
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 5)
16-
set(RMQ_SOVERSION_REVISION 2)
16+
set(RMQ_SOVERSION_REVISION 3)
1717
set(RMQ_SOVERSION_AGE 1)
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.7.0 (a.k.a., v0.7.1)
3+
- `41fa9df` Autoconf: add missing files in build system
4+
- `ef73c06` Win32: Use WSAEWOULDBLOCK instead of EWOULDBLOCK on Win32
5+
- `ceca348` CI: use travis-ci container based builds
6+
- `393e2df` Lib: if channel_max is 0 use server's channel_max
7+
- `ff47574` Lib: fix build on OpenBSD
8+
- `8429496...0ac6430` CI: enable CI on Mac OS X in travis-ci
9+
210
## Changes since v0.6.0 (a.k.a., v0.7.0)
311
- `3379812` Tools: Add support for heartbeats
412
- `d7029db` CI: Add continuous integration on Win32 using Appveyor

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ m4_define([micro_version], [1])
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], [5])
16-
m4_define([soversion_revision], [2])
16+
m4_define([soversion_revision], [3])
1717
m4_define([soversion_age], [1])
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 7
227227
#define AMQP_VERSION_PATCH 1
228-
#define AMQP_VERSION_IS_RELEASE 0
228+
#define AMQP_VERSION_IS_RELEASE 1
229229

230230

231231
/**

0 commit comments

Comments
 (0)