]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
librados: bump rados version number 3360/head
authorMatt Richards <mattjrichards@gmail.com>
Tue, 13 Jan 2015 00:59:42 +0000 (16:59 -0800)
committerMatt Richards <mattjrichards@gmail.com>
Tue, 13 Jan 2015 01:00:52 +0000 (17:00 -0800)
As a follow-on to 49d114f1fff90e5c0f206725a5eb82c0ba329376,
increment the "extra" version field so clients can easily
determine if they have a version of librados that properly
translates C API operation flags.

Signed-off-by: Matthew Richards <mattjrichards@gmail.com>
src/include/rados/librados.h

index 63edfe5d52f7f6bbce1c60517c54f578b0bffd31..4a603c8b754b7ee851dd9ea15dedf1bc42851d9a 100644 (file)
@@ -40,7 +40,7 @@ extern "C" {
 
 #define LIBRADOS_VER_MAJOR 0
 #define LIBRADOS_VER_MINOR 69
-#define LIBRADOS_VER_EXTRA 0
+#define LIBRADOS_VER_EXTRA 1
 
 #define LIBRADOS_VERSION(maj, min, extra) ((maj << 16) + (min << 8) + extra)