Released 3.13.0 fuse-3.13.0
authorNikolaus Rath <Nikolaus@rath.org>
Fri, 13 Jan 2023 10:33:35 +0000 (10:33 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 13 Jan 2023 10:33:35 +0000 (10:33 +0000)
AUTHORS
ChangeLog.rst
include/fuse_common.h
meson.build

diff --git a/AUTHORS b/AUTHORS
index d0c1f74e5981c022d05fbf51bad1d84d3c377775..2573effd0448fc451e3a19f97ad9cafdbf440d04 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -55,6 +55,7 @@ Chad Austin <chad@chadaustin.me>
 Changli Gao <xiaosuo@gmail.com>
 Christian Menges <christian.menges@tum.de>
 Christopher Harrison <ch12@sanger.ac.uk>
+Ciaran <ciaran@hypokrites.me>
 Consus <consus@gmx.com>
 Craig Chi <craig08@users.noreply.github.com>
 Csaba Henk <csaba.henk@creo.hu>
@@ -90,10 +91,12 @@ Forty-Bot <Forty-Bot@users.noreply.github.com>
 Frank Dinoff <fdinoff@google.com>
 Giulio Benetti <giulio.benetti@benettiengineering.com>
 Giuseppe Scrivano <giuseppe@scrivano.org>
+Goswin von Brederlow <goswin-v-b@web.de>
 guraga <rulumasi@dodsi.com>
 HazelFZ <xfzfygz@gmail.com>
 Heiko Becker <heirecka@exherbo.org>
 Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
+HereThereBeDragons <HereThereBeDragons@users.noreply.github.com>
 Hookey <Hookey@users.noreply.github.com>
 human <human@neet.fi>
 Ikey Doherty <michael.i.doherty@intel.com>
@@ -118,6 +121,7 @@ Kangjing "Chaser" Huang <huangkangjing@gmail.com>
 Ken Schalk <kcs-github@xorian.net>
 Kevin Vigor <kvigor@fb.com>
 Kirill Smelkov <kirr@nexedi.com>
+Kyle Lippincott <spectral@google.com>
 Laszlo Boszormenyi (GCS) <gcs@debian.org>
 Laszlo Papp <ext-laszlo.papp@nokia.com>
 Laurent Bigonville <bigon@users.noreply.github.com>
@@ -189,6 +193,7 @@ Tej Chajed <tchajed@mit.edu>
 tenzap <46226844+tenzap@users.noreply.github.com>
 therealneworld@gmail.com <therealneworld@gmail.com>
 Tobias Nießen <tniessen@users.noreply.github.com>
+Tofik Sonono <tofik.sonono@intel.com>
 Tomasz Kulasek <34129113+tkulasek@users.noreply.github.com>
 Tom Callaway <spot@fedoraproject.org>
 Tom Callaway <spotrh@gmail.com>
@@ -199,6 +204,8 @@ Vivek Goyal <vgoyal@redhat.com>
 William Woodruff <william@yossarian.net>
 Winfried Koehler <w_scan@gmx-topmail.de>
 winndows <winndows@163.com>
+y <tofik.sonono@intel.com>
 Yuri Per <yuri@acronis.com>
+Zhansong Gao <zhsgao@hotmail.com>
 Zhiqiang Liu <liuzhiqiang26@huawei.com>
 zsugabubus <zsugabubus@users.noreply.github.com>
index 226a80109b48ede519aa22e76da438f32ccdb962..25dc159dcebcef0d52a5640d86e87eb1f5539eeb 100644 (file)
@@ -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)
 ===========================
 
index dbba05af8e729bff6538d3a3185d99ac123339e4..cf9bc270c8e4af6def27403a3303f6bdb10d13aa 100644 (file)
@@ -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)
index c0acb37972b0245b510e1fea03c17ff4e9f9d036..d1b2ae094351b32473face6beb55442bfe470a9e 100644 (file)
@@ -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',