summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2023-02-17 09:31:14 +0000
committerNikolaus Rath <Nikolaus@rath.org>2023-02-17 09:31:14 +0000
commit3f65bb699cd2f0afe2b9519c39d29922229f2168 (patch)
tree410ca9843e53eb4150db8b2bfce33b6785a3baef
parent418b7efca9bfa56802732ecde75651071315c9bd (diff)
downloadfuse-3f65bb699cd2f0afe2b9519c39d29922229f2168.tar.gz
Released 3.14.0fuse-3.14.0
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog.rst10
-rw-r--r--include/fuse_common.h2
-rw-r--r--meson.build2
4 files changed, 13 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 31ccca3..634eb88 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -205,6 +205,7 @@ Vivek Goyal <vgoyal@redhat.com>
William Woodruff <william@yossarian.net>
Winfried Koehler <w_scan@gmx-topmail.de>
winndows <winndows@163.com>
+Xiubo Li <xiubli@redhat.com>
y <tofik.sonono@intel.com>
Yuri Per <yuri@acronis.com>
Zhansong Gao <zhsgao@hotmail.com>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index afb2096..35298d6 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,3 +1,13 @@
+libfuse 3.14.0 (2023-02-17)
+===========================
+
+* Properly fix the header installation issue. The fix in 3.13.1 resulted
+ in conflicts with other packages.
+
+* Introduce additional setattr() flags (FORCE, KILL_SUID, KILL_SGID, FILE, KILL_PRIV,
+ OPEN, TIMES_SET)
+
+
libfuse 3.13.1 (2023-02-03)
===========================
diff --git a/include/fuse_common.h b/include/fuse_common.h
index 8ee1a34..ca15be8 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -29,7 +29,7 @@
#define FUSE_MAJOR_VERSION 3
/** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 13
+#define FUSE_MINOR_VERSION 14
#define FUSE_MAKE_VERSION(maj, min) ((maj) * 100 + (min))
#define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
diff --git a/meson.build b/meson.build
index fb6451a..7e88ac3 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('libfuse3', ['c'], version: '3.13.1',
+project('libfuse3', ['c'], version: '3.14.0',
meson_version: '>= 0.50',
default_options: [
'buildtype=debugoptimized',