From: Jason Dillaman Date: Fri, 22 Jan 2021 13:35:22 +0000 (-0500) Subject: librbd: bump minor version to match Q release X-Git-Tag: v17.1.0~3196^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8010dfa23e7f275d40b94a9f4ed9fbe601e091d3;p=ceph.git librbd: bump minor version to match Q release This will assist layered projects like QEMU and libvirt determine which features are supported. Signed-off-by: Jason Dillaman --- diff --git a/src/include/rbd/librbd.h b/src/include/rbd/librbd.h index c96ed186560..29e89c475e0 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 17 #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..0dd23e28dd7 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.17.0 SOVERSION 1 CXX_VISIBILITY_PRESET hidden VISIBILITY_INLINES_HIDDEN ON)