Skip to content

Commit

Permalink
Preparation for v0.7.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanxz committed Oct 13, 2015
1 parent 0ac6430 commit a536516
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 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 5)
set(RMQ_SOVERSION_REVISION 2)
set(RMQ_SOVERSION_REVISION 3)
set(RMQ_SOVERSION_AGE 1)

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.7.0 (a.k.a., v0.7.1)
- `41fa9df` Autoconf: add missing files in build system
- `ef73c06` Win32: Use WSAEWOULDBLOCK instead of EWOULDBLOCK on Win32
- `ceca348` CI: use travis-ci container based builds
- `393e2df` Lib: if channel_max is 0 use server's channel_max
- `ff47574` Lib: fix build on OpenBSD
- `8429496...0ac6430` CI: enable CI on Mac OS X in travis-ci

## Changes since v0.6.0 (a.k.a., v0.7.0)
- `3379812` Tools: Add support for heartbeats
- `d7029db` CI: Add continuous integration on Win32 using Appveyor
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], [1])
# 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], [5])
m4_define([soversion_revision], [2])
m4_define([soversion_revision], [3])
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 @@ -225,7 +225,7 @@ AMQP_BEGIN_DECLS
#define AMQP_VERSION_MAJOR 0
#define AMQP_VERSION_MINOR 7
#define AMQP_VERSION_PATCH 1
#define AMQP_VERSION_IS_RELEASE 0
#define AMQP_VERSION_IS_RELEASE 1


/**
Expand Down

0 comments on commit a536516

Please sign in to comment.