Skip to content

Commit 2ee29e5

Browse files
committed
Preparation for v0.5.0 release
1 parent fc167b5 commit 2ee29e5

File tree

5 files changed

+37
-14
lines changed

5 files changed

+37
-14
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 2)
16-
set(RMQ_SOVERSION_REVISION 1)
17-
set(RMQ_SOVERSION_AGE 1)
15+
set(RMQ_SOVERSION_CURRENT 3)
16+
set(RMQ_SOVERSION_REVISION 0)
17+
set(RMQ_SOVERSION_AGE 2)
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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11
# Change Log
2+
## Changes since v0.4.1 (a.k.a., v0.5.0):
3+
### Major changes:
4+
- Add amqp_get_broker_properties() function 5c7c40adc1
5+
- Remove distro-specific packaging a5749657ee
6+
- Add -x flag to amqp-consume utilty 1d9c5291ff
7+
- Add amqp_basic_nack() public API 9b168776fb
8+
- Add delivery mode constants to amqp.h 5f291ea772
9+
- Add support for connection.blocked/connection.unblocked methods ccbc24d270
10+
11+
### Bug fixes:
12+
- `f8c6cee749` Examples: Destroy amqp_envelope_t in consumer example
13+
- `ac88db56d3` CMake: fix generation of librabbitmq.pc
14+
- `d5b35afa40` CMake: fix missing POPT_INCLUDE_DIRS variable in tools/
15+
- `5ea6a0945a` build: provide independent locations for x64 libs
16+
- `fac34656c0` Doc: documentation fixes
17+
- `715901d675` Lib: Correct OpenSSL initialization under threaded conditions
18+
- `ce64e57df8` Examples: Handle unexpected frames in amqp_consumer.c
19+
- `bcda3e933d` CMake: Use GnuInstallDirs to generate install dirs
20+
- `27245a4e15` Lib: correctly handle amqp_get_monotonic_timestamp on win32
21+
- `693662ef5b` Tools: honor --persistent flag in publish utility
22+
- `01d9c3ca60` Doc: improve documentation in amqp_ssl_socket functions
23+
- `02d5c58ae4` autoconf: correct librabbitmq.pc generation
24+
- `1f4e0cc48b` Doc: improve documentation in amqp_tcp_socket functions
225

326
## Changes since v0.4.0:
427
### Major changes:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ rabbitmq-discuss mailing list:
1616

1717
## Latest Stable Version
1818

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

22-
The v0.4.1 source tarball can be downloaded from:
22+
The v0.5.0 source tarball can be downloaded from:
2323

24-
<https://github.com/alanxz/rabbitmq-c/releases/download/v0.4.1/rabbitmq-c-0.4.1.tar.gz>
24+
<https://github.com/alanxz/rabbitmq-c/releases/download/v0.5.0/rabbitmq-c-0.5.0.tar.gz>
2525

26-
API documentation for v0.4.0+ can viewed from:
26+
API documentation for v0.5.0+ can viewed from:
2727

28-
<http://alanxz.github.io/rabbitmq-c/docs/0.4.0/>
28+
<http://alanxz.github.io/rabbitmq-c/docs/0.5.0/>
2929

3030
## Getting started
3131

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], [4])
6-
m4_define([micro_version], [1])
5+
m4_define([minor_version], [5])
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], [2])
16-
m4_define([soversion_revision], [1])
17-
m4_define([soversion_age], [1])
15+
m4_define([soversion_current], [3])
16+
m4_define([soversion_revision], [0])
17+
m4_define([soversion_age], [2])
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ AMQP_BEGIN_DECLS
224224
#define AMQP_VERSION_MAJOR 0
225225
#define AMQP_VERSION_MINOR 5
226226
#define AMQP_VERSION_PATCH 0
227-
#define AMQP_VERSION_IS_RELEASE 0
227+
#define AMQP_VERSION_IS_RELEASE 1
228228

229229

230230
/**

0 commit comments

Comments
 (0)