File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
13
13
# 4. If any interfaces have been removed since the last public release, then set age to 0.
14
14
15
15
set (RMQ_SOVERSION_CURRENT 5 )
16
- set (RMQ_SOVERSION_REVISION 2 )
16
+ set (RMQ_SOVERSION_REVISION 3 )
17
17
set (RMQ_SOVERSION_AGE 1 )
18
18
19
19
math (EXPR RMQ_SOVERSION_MAJOR "${RMQ_SOVERSION_CURRENT} - ${RMQ_SOVERSION_AGE} " )
Original file line number Diff line number Diff line change 1
1
# 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
+
2
10
## Changes since v0.6.0 (a.k.a., v0.7.0)
3
11
- ` 3379812 ` Tools: Add support for heartbeats
4
12
- ` d7029db ` CI: Add continuous integration on Win32 using Appveyor
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ m4_define([micro_version], [1])
13
13
# 3. If any interfaces have been added since the last public release, then increment age.
14
14
# 4. If any interfaces have been removed since the last public release, then set age to 0.
15
15
m4_define ( [ soversion_current] , [ 5] )
16
- m4_define ( [ soversion_revision] , [ 2 ] )
16
+ m4_define ( [ soversion_revision] , [ 3 ] )
17
17
m4_define ( [ soversion_age] , [ 1] )
18
18
19
19
AC_INIT ( [ rabbitmq-c] , [ major_version.minor_version.micro_version] ,
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ AMQP_BEGIN_DECLS
225
225
#define AMQP_VERSION_MAJOR 0
226
226
#define AMQP_VERSION_MINOR 7
227
227
#define AMQP_VERSION_PATCH 1
228
- #define AMQP_VERSION_IS_RELEASE 0
228
+ #define AMQP_VERSION_IS_RELEASE 1
229
229
230
230
231
231
/**
You can’t perform that action at this time.
0 commit comments