Skip to content

Commit 4dde30c

Browse files
committed
Preparation for v0.7.0 release.
1 parent e4a928b commit 4dde30c

File tree

4 files changed

+31
-9
lines changed

4 files changed

+31
-9
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
1212
# 3. If any interfaces have been added since the last public release, then increment age.
1313
# 4. If any interfaces have been removed since the last public release, then set age to 0.
1414

15-
set(RMQ_SOVERSION_CURRENT 4)
15+
set(RMQ_SOVERSION_CURRENT 5)
1616
set(RMQ_SOVERSION_REVISION 1)
17-
set(RMQ_SOVERSION_AGE 0)
17+
set(RMQ_SOVERSION_AGE 1)
1818

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

ChangeLog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11
# Change Log
2+
## Changes since v0.6.0 (a.k.a., v0.7.0)
3+
- `3379812` Tools: Add support for heartbeats
4+
- `d7029db` CI: Add continuous integration on Win32 using Appveyor
5+
- `a5f7ffb` Tests: only link against static libraries
6+
- `a16ad45...9cf7a3b` Lib: add support for EXTERNAL SASL method
7+
- `038a9ed` Lib: fix incorrect parameters to WSAPoll on Win32
8+
- `a240c69...14ae307` Lib: use non-blocking sockets internally
9+
- `8d1d5cc`, `5498dc6` Lib: simplify timer/timeout logic
10+
- `61fc4e1` Lib: add support for heartbeat checks in blocking send calls
11+
- `f462c0f...3546a70` Lib: Fix warnings on Win32
12+
- `ba9d8ba...112a54d` Lib: Add support for RabbitMQ auth failure extension
13+
- `fb8e318` Lib: allow calling functions to override client-properties
14+
- `3ef3f5f` examples: replace usleep() with nanosleep()
15+
- `9027a94` Lib: add AMQP_VERSION code
16+
- `9ee1718` Lib: fix res maybe returned uninitialized in amqp_merge_capbilities
17+
- `22a36db` Lib: Fix SSL_connection status check
18+
- `abbefd4` Lib: Fix issues with c89 compatiblity
19+
- `2bc1f9b...816cbfc` Lib: perf improvements when sending small messages by
20+
hinting to the OS message boundaries.
21+
- `be2e6dd...784a0e9` Lib: add select()-based timeout implementation
22+
- `91db548...8d77b4c` CI: add ubsan, asan, and tsan CI builds
23+
224
## Changes since v0.5.2 (a.k.a., v0.6.0)
325
- `e1746f9` Tools: Enable support for SSL in tools.
426
- `9626dd5` Lib: ABI CHANGE: enable support for auto_delete, internal flags to

configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
AC_PREREQ([2.59])
33

44
m4_define([major_version], [0])
5-
m4_define([minor_version], [6])
6-
m4_define([micro_version], [1])
5+
m4_define([minor_version], [7])
6+
m4_define([micro_version], [0])
77

88
# Follow all steps below in order to calculate new ABI version when updating the library
99
# NOTE: THIS IS UNRELATED to the actual project version
@@ -12,9 +12,9 @@ m4_define([micro_version], [1])
1212
# 2. If any interfaces have been added, removed, or changed since the last update, increment current and set revision to 0.
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.
15-
m4_define([soversion_current], [4])
15+
m4_define([soversion_current], [5])
1616
m4_define([soversion_revision], [1])
17-
m4_define([soversion_age], [0])
17+
m4_define([soversion_age], [1])
1818

1919
AC_INIT([rabbitmq-c], [major_version.minor_version.micro_version],
2020
[https://github.com/alanxz/rabbitmq-c/issues], [rabbitmq-c],

librabbitmq/amqp.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ AMQP_BEGIN_DECLS
223223
*/
224224

225225
#define AMQP_VERSION_MAJOR 0
226-
#define AMQP_VERSION_MINOR 6
227-
#define AMQP_VERSION_PATCH 1
228-
#define AMQP_VERSION_IS_RELEASE 0
226+
#define AMQP_VERSION_MINOR 7
227+
#define AMQP_VERSION_PATCH 0
228+
#define AMQP_VERSION_IS_RELEASE 1
229229

230230

231231
/**

0 commit comments

Comments
 (0)