From: Jason Dillaman Date: Fri, 22 Jan 2021 13:31:08 +0000 (-0500) Subject: librbd: bump minor version to match pacific X-Git-Tag: v16.2.0~243^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F39023%2Fhead;p=ceph.git 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 --- 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)