summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2023-01-13 10:33:35 +0000
committerNikolaus Rath <Nikolaus@rath.org>2023-01-13 10:33:35 +0000
commit9acd183460656bffa6672e85a413b5b4f80bce5e (patch)
tree0d63d4d9674c139121e868346a819e53dbcbfac3
parentc67b9219cfe132809555ad5a04c3e13c7cde70ed (diff)
downloadfuse-9acd183460656bffa6672e85a413b5b4f80bce5e.tar.gz
Released 3.13.0fuse-3.13.0
-rw-r--r--AUTHORS7
-rw-r--r--ChangeLog.rst13
-rw-r--r--include/fuse_common.h2
-rw-r--r--meson.build2
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 <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>
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',