Released 3.14.0 fuse-3.14.0
authorNikolaus Rath <Nikolaus@rath.org>
Fri, 17 Feb 2023 09:31:14 +0000 (09:31 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 17 Feb 2023 09:31:14 +0000 (09:31 +0000)
AUTHORS
ChangeLog.rst
include/fuse_common.h
meson.build

diff --git a/AUTHORS b/AUTHORS
index 31ccca34857633b564b8aa4d373bf95071c9b9e1..634eb885f70d3f2be1737e51abb293339393ab7d 100644 (file)
--- 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>
index afb2096e40fca230f85940f42ac93da60713e604..35298d620c090f59fca735117b6b506fa81626f6 100644 (file)
@@ -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)
 ===========================
 
index 8ee1a34029ff94696b319d24d287de799c052c90..ca15be8da325a75b2493c7ca89e1add2703287ec 100644 (file)
@@ -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)
index fb6451a0daacb85a331699892e26b7d7b35ed4d0..7e88ac374db1c6322878824e717b62d2ff331f85 100644 (file)
@@ -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',