From 653779e76405527ee8766ffe3b50d3517065687a Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Fri, 22 Jan 2021 08:31:08 -0500 Subject: [PATCH] librbd: bump minor version to match pacific This will assist layered projects like QEMU and libvirt determine which features are supported. Fixes: https://tracker.ceph.com/issues/48882 Signed-off-by: Jason Dillaman --- src/include/rbd/librbd.h | 2 +- src/librbd/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/rbd/librbd.h b/src/include/rbd/librbd.h index c96ed186560..86b60eb27f0 100644 --- a/src/include/rbd/librbd.h +++ b/src/include/rbd/librbd.h @@ -32,7 +32,7 @@ extern "C" { #include "features.h" #define LIBRBD_VER_MAJOR 1 -#define LIBRBD_VER_MINOR 15 +#define LIBRBD_VER_MINOR 16 #define LIBRBD_VER_EXTRA 0 #define LIBRBD_VERSION(maj, min, extra) ((maj << 16) + (min << 8) + extra) diff --git a/src/librbd/CMakeLists.txt b/src/librbd/CMakeLists.txt index e3c9d29e9e6..ed0fe8835ef 100644 --- a/src/librbd/CMakeLists.txt +++ b/src/librbd/CMakeLists.txt @@ -342,7 +342,7 @@ endif() if(ENABLE_SHARED) set_target_properties(librbd PROPERTIES OUTPUT_NAME rbd - VERSION 1.12.0 + VERSION 1.16.0 SOVERSION 1 CXX_VISIBILITY_PRESET hidden VISIBILITY_INLINES_HIDDEN ON) -- 2.47.3