Skip to content

Commit

Permalink
Preparation for v0.13.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
alanxz committed Feb 6, 2023
1 parent 35c4ef1 commit 974d71a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
# 4. If any interfaces have been removed since the last public release, then set age to 0.

set(RMQ_SOVERSION_CURRENT 9)
set(RMQ_SOVERSION_REVISION 3)
set(RMQ_SOVERSION_REVISION 4)
set(RMQ_SOVERSION_AGE 5)

include(VersionFunctions)
Expand Down
12 changes: 12 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Change Log
## v0.13.0 - 2023-02-05
## Fixed
- Fixed missing option to not install static library (#665)
- Missing pkgconfig version in v0.12.0 output (#755, #751)
- Correct return value from amqp_ssl_socket_set_key_buffer (#723)

## Changed
- Remove OpenSSL code no longer needed when used with OpenSSL >= 1.1.0. (Fixed: #715, #737)

## Added
- Integration with OSS-Fuzz (#736)

## v0.12.0 - 2023-01-31
## Changed
- rabbitmq-c now compiles as C99
Expand Down
2 changes: 1 addition & 1 deletion include/rabbitmq-c/amqp.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ AMQP_BEGIN_DECLS
#define AMQP_VERSION_MAJOR 0
#define AMQP_VERSION_MINOR 13
#define AMQP_VERSION_PATCH 0
#define AMQP_VERSION_IS_RELEASE 0
#define AMQP_VERSION_IS_RELEASE 1

/**
* \def AMQP_VERSION_CODE
Expand Down

0 comments on commit 974d71a

Please sign in to comment.