From 8010dfa23e7f275d40b94a9f4ed9fbe601e091d3 Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Fri, 22 Jan 2021 08:35:22 -0500 Subject: [PATCH] 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 --- 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..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) -- 2.47.3