Skip to content

Commit e324e5a

Browse files
committed
Preparation for v0.6.0 release.
1 parent 5348c69 commit e324e5a

File tree

5 files changed

+21
-12
lines changed

5 files changed

+21
-12
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 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 3)
16-
set(RMQ_SOVERSION_REVISION 3)
17-
set(RMQ_SOVERSION_AGE 2)
15+
set(RMQ_SOVERSION_CURRENT 4)
16+
set(RMQ_SOVERSION_REVISION 0)
17+
set(RMQ_SOVERSION_AGE 0)
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# Change Log
2+
## Changes since v0.5.2 (a.k.a., v0.6.0)
3+
- `e1746f9` Tools: Enable support for SSL in tools.
4+
- `9626dd5` Lib: ABI CHANGE: enable support for auto_delete, internal flags to
5+
amqp_exchange_declare
6+
- `ee54e27`, `656f833` Lib: check for double-close in SSL/TCP socket impl
7+
- `cf2760d` Lib: allocate struct when method has no field.
8+
- `513ad4a` Lib: add support for SANs in OpenSSL socket impl.
9+
- `5348c69` Lib: add functions to get negotiated frame_max and heartbeat parms.
10+
211
## Changes since v0.5.1 (a.k.a., v0.5.2)
312
- `fcdf0f8` Autoconf: check for htonll as declaration in a header file
413
- `5790ec7` SSL: correctly report hostname verification errors.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rabbitmq-discuss mailing list:
1616

1717
## Latest Stable Version
1818

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

2222
The v0.5.2 source tarball can be downloaded from:

configure.ac

Lines changed: 5 additions & 5 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], [5])
6-
m4_define([micro_version], [3])
5+
m4_define([minor_version], [6])
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], [3])
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], [3])
16-
m4_define([soversion_revision], [3])
17-
m4_define([soversion_age], [2])
15+
m4_define([soversion_current], [4])
16+
m4_define([soversion_revision], [0])
17+
m4_define([soversion_age], [0])
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 5
227-
#define AMQP_VERSION_PATCH 3
228-
#define AMQP_VERSION_IS_RELEASE 0
226+
#define AMQP_VERSION_MINOR 6
227+
#define AMQP_VERSION_PATCH 0
228+
#define AMQP_VERSION_IS_RELEASE 1
229229

230230

231231
/**

0 commit comments

Comments
 (0)