From 80663a79360a79d976ebf1fddb8fdff19139851f Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Mon, 22 Apr 2024 12:05:39 +0200 Subject: Use single place to define the version and increase version to 3.17.0 (#932) * Use single place to define the version Defining the version in fuse_common.h, is removed, it is defined through meson and provided by "libfuse_config.h". I.e. it avoids to define the version twice - once in meson and once in fuse_common.h. Ideal would be to set integers in the meson file and create the version string from these integers. However, meson requires that "project" is the first meson.build keyword - with that it requires to set the version from a string and then major/minor/hotfix integers are created from string split. Signed-off-by: Bernd Schubert * Increase the version to 3.17.0 This is to prepare the branch for the next release. Signed-off-by: Bernd Schubert --------- Signed-off-by: Bernd Schubert --- include/fuse_common.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'include/fuse_common.h') diff --git a/include/fuse_common.h b/include/fuse_common.h index 6a060fd..4efa53d 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -25,12 +25,6 @@ #include #include -/** Major version of FUSE library interface */ -#define FUSE_MAJOR_VERSION 3 - -/** Minor version of FUSE library interface */ -#define FUSE_MINOR_VERSION 16 - #define FUSE_MAKE_VERSION(maj, min) ((maj) * 100 + (min)) #define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION) -- cgit v1.2.3