mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-23 12:14:15 +08:00
Released 3.14.0
This commit is contained in:
parent
418b7efca9
commit
3f65bb699c
1
AUTHORS
1
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>
|
||||
|
@ -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)
|
||||
===========================
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user