Skip to content

Commit 675afc2

Browse files
committed
Preparation for v0.12.0 release
Signed-off-by: GitHub <noreply@github.com>
1 parent d558e12 commit 675afc2

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CMakeLists.txt

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

1616
set(RMQ_SOVERSION_CURRENT 9)
17-
set(RMQ_SOVERSION_REVISION 1)
17+
set(RMQ_SOVERSION_REVISION 2)
1818
set(RMQ_SOVERSION_AGE 5)
1919

2020
include(VersionFunctions)

ChangeLog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
# Change Log
2+
## v0.12.0 - 2023-01-31
3+
## Changed
4+
- rabbitmq-c now compiles as C99
5+
- CMake 3.12 is new minimum required version
6+
- CMake -DBUILD_TESTS renamed to -DBUILD_TESTING
7+
- CMake -DBUILD_EXAMPLES now defaults to OFF
8+
- CMake -DBUILD_TOOLS now defaults to OFF
9+
- Unix library version now matches the release version, SONAME remains the same.
10+
- Modernized CMake scripts to better adopt modern standards
11+
- Public headers have moved to rabbitmq-c/ directory
12+
- Dropped support for MSVC older than VS 2010
13+
- Dropped support for OpenSSL v1.1.0 and older
14+
- Minimum SSL version set to TLSv1.2
15+
- Updated to RabbitMQ framing to v3.8.19
16+
217
## v0.11.0 - 2021-03-31
318
## Added:
419
- rabbitmq-c-config.cmake is now generated (#611)

include/rabbitmq-c/amqp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ AMQP_BEGIN_DECLS
120120
#define AMQP_VERSION_MAJOR 0
121121
#define AMQP_VERSION_MINOR 12
122122
#define AMQP_VERSION_PATCH 0
123-
#define AMQP_VERSION_IS_RELEASE 0
123+
#define AMQP_VERSION_IS_RELEASE 1
124124

125125
/**
126126
* \def AMQP_VERSION_CODE

0 commit comments

Comments
 (0)