From 9acd183460656bffa6672e85a413b5b4f80bce5e Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Fri, 13 Jan 2023 10:33:35 +0000 Subject: Released 3.13.0 --- AUTHORS | 7 +++++++ ChangeLog.rst | 13 +++++++++++-- include/fuse_common.h | 2 +- meson.build | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/AUTHORS b/AUTHORS index d0c1f74..2573eff 100644 --- a/AUTHORS +++ b/AUTHORS @@ -55,6 +55,7 @@ Chad Austin Changli Gao Christian Menges Christopher Harrison +Ciaran Consus Craig Chi Csaba Henk @@ -90,10 +91,12 @@ Forty-Bot Frank Dinoff Giulio Benetti Giuseppe Scrivano +Goswin von Brederlow guraga HazelFZ Heiko Becker Hendrik Brueckner +HereThereBeDragons Hookey human Ikey Doherty @@ -118,6 +121,7 @@ Kangjing "Chaser" Huang Ken Schalk Kevin Vigor Kirill Smelkov +Kyle Lippincott Laszlo Boszormenyi (GCS) Laszlo Papp Laurent Bigonville @@ -189,6 +193,7 @@ Tej Chajed tenzap <46226844+tenzap@users.noreply.github.com> therealneworld@gmail.com Tobias Nießen +Tofik Sonono Tomasz Kulasek <34129113+tkulasek@users.noreply.github.com> Tom Callaway Tom Callaway @@ -199,6 +204,8 @@ Vivek Goyal William Woodruff Winfried Koehler winndows +y Yuri Per +Zhansong Gao Zhiqiang Liu zsugabubus diff --git a/ChangeLog.rst b/ChangeLog.rst index 226a801..25dc159 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,9 +1,18 @@ -libfuse next.release.version (xxxx-xx-xx) -========================================= +libfuse 3.13.0 (2023-01-13) +=========================== + * There is a new low-level API function `fuse_session_custom_io` that allows to implement a daemon with a custom io. This can be used to create a daemon that can process incoming FUSE requests to other destinations than `/dev/fuse`. +* A segfault when loading custom FUSE modules has been fixed. + +* There is a new `fuse_notify_expire_entry` function. + +* A deadlock when resolving paths in the high-level API has been fixed. + +* libfuse can now be build explicitly for C libraries without symbol versioning support. + libfuse 3.12.0 (2022-09-08) =========================== diff --git a/include/fuse_common.h b/include/fuse_common.h index dbba05a..cf9bc27 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -23,7 +23,7 @@ #define FUSE_MAJOR_VERSION 3 /** Minor version of FUSE library interface */ -#define FUSE_MINOR_VERSION 12 +#define FUSE_MINOR_VERSION 13 #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 c0acb37..d1b2ae0 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libfuse3', ['c'], version: '3.12.0', +project('libfuse3', ['c'], version: '3.13.0', meson_version: '>= 0.42', default_options: [ 'buildtype=debugoptimized', -- cgit v1.2.1