Skip to content

Commit 438c199

Browse files
committed
Prep for v0.4.1 release
1 parent 24f4131 commit 438c199

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
1313
# 4. If any interfaces have been removed since the last public release, then set age to 0.
1414

1515
set(RMQ_SOVERSION_CURRENT 2)
16-
set(RMQ_SOVERSION_REVISION 0)
16+
set(RMQ_SOVERSION_REVISION 1)
1717
set(RMQ_SOVERSION_AGE 1)
1818

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

ChangeLog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## Changes since v0.4.0:
4+
### Major changes:
5+
- Removed distro-specific packaging d285d01
6+
7+
### Bug fixes:
8+
- `a642602` FIX: destroy amqp_envelop_t object in consumer example
9+
- `860dd71` FIX: correct generation of librabbitmq.pc under CMake
10+
- `bdda7ab` FIX: amqp_socket_close() should not be exported from shlib
11+
- `24f4131` FIX: Use correct buf/len vars when re-starting send()
12+
313
## Changes since v0.3.0:
414
### New Features/Enhancements:
515
- `amqp_login_with_properties()` function to connect to a broker sending a

README.md

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

1717
## Latest Stable Version
1818

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

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

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

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

2828
<http://alanxz.github.io/rabbitmq-c/docs/0.4.0/>
2929

configure.ac

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

44
m4_define([major_version], [0])
55
m4_define([minor_version], [4])
6-
m4_define([micro_version], [0])
6+
m4_define([micro_version], [1])
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
@@ -13,7 +13,7 @@ m4_define([micro_version], [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.
1515
m4_define([soversion_current], [2])
16-
m4_define([soversion_revision], [0])
16+
m4_define([soversion_revision], [1])
1717
m4_define([soversion_age], [1])
1818

1919
AC_INIT([rabbitmq-c], [major_version.minor_version.micro_version],

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 4
226226
#define AMQP_VERSION_PATCH 1
227-
#define AMQP_VERSION_IS_RELEASE 0
227+
#define AMQP_VERSION_IS_RELEASE 1
228228

229229

230230
/**

0 commit comments

Comments
 (0)