Skip to content

Commit a0cd15c

Browse files
committed
libbtrfsutil: bump version to 1.4.0
Minor version change as the python bindings now export the symbols from 1.3.0. This was not done in the same version by mistake. New btrfsutil symbols: * fs_sync(path) * fs_start_sync(path) * fs_wait_sync(path, transid=0) * subvolume_is_valid(path) * subvolume_get_id(path) * subvolume_get_path(path, id=0) * subvolume_get_info(path, id=0) * subvolume_get_read_only(path) * subvolume_set_read_only(path, read_only=True) * subvolume_get_default(path) * subvolume_set_default(path, id=0) * subvolume_create(path, async_=False, qgroup_inherit=None) * subvolume_snapshot(source, path, recursive=False, read_only=False,async_=False, qgroup_inherit=None) * subvolume_delete(path, recursive=False) * subvolumes_list_deleted(path) Signed-off-by: David Sterba <[email protected]>
1 parent 824786a commit a0cd15c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

libbtrfsutil/btrfsutil.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#include <sys/time.h>
2727

2828
#define BTRFS_UTIL_VERSION_MAJOR 1
29-
#define BTRFS_UTIL_VERSION_MINOR 3
30-
#define BTRFS_UTIL_VERSION_PATCH 2
29+
#define BTRFS_UTIL_VERSION_MINOR 4
30+
#define BTRFS_UTIL_VERSION_PATCH 0
3131

3232
#ifdef __cplusplus
3333
extern "C" {

libbtrfsutil/libbtrfsutil.sym

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,7 @@ global:
147147
btrfs_util_fs_wait_sync;
148148
btrfs_util_fs_wait_sync_fd;
149149
} LIBBTRFSUTIL_1.2;
150+
151+
LIBBTRFSUTIL_1.4 {
152+
/* No change, keep version in sync due to python bindings. */
153+
} LIBBTRFSUTIL_1.3;

0 commit comments

Comments
 (0)