Released 3.15.0 fuse-3.15.0
authorNikolaus Rath <Nikolaus@rath.org>
Fri, 9 Jun 2023 09:36:28 +0000 (10:36 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 9 Jun 2023 09:36:28 +0000 (10:36 +0100)
AUTHORS
ChangeLog.rst
include/fuse_common.h
meson.build

diff --git a/AUTHORS b/AUTHORS
index 9463d65f49b2a9fff08a2c2bc96315a0a540df71..95ee068d83be192d17ed2fd7e41c5900433db839 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -138,6 +138,8 @@ Mark Glines <mark@glines.org>
 Martin Blanchard <tchaik@gmx.com>
 Martin Pärtel <martin.partel@gmail.com>
 Mateusz Urbańczyk <murbanczyk@qed.ai>
+Matthias Goergens <matthias.goergens@gmail.com>
+Matthias Görgens <matthias.goergens@gmail.com>
 Mattias Nissler <mnissler@chromium.org>
 maxice8 <30738253+maxice8@users.noreply.github.com>
 Maximilian Heinzler <m.heinzler@heinzler.de>
@@ -158,6 +160,9 @@ Nozomi Miyamori <99280467+nm004@users.noreply.github.com>
 Oded Arbel <oded@geek.co.il>
 Olivier Blin <olivier.blin@softathome.com>
 pablomh <pablomh@gmail.com>
+Pedro Kaj Kjellerup Nacht <pnacht@google.com>
+Pedro Nacht <pnacht@google.com>
+Peri <peri@srdi.org>
 Peter Lemenkov <lemenkov@gmail.com>
 philmd <philmd@users.noreply.github.com>
 Pierre Labastie <pierre.labastie@neuf.fr>
@@ -204,10 +209,12 @@ Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
 userwithuid <userwithuid@gmail.com>
 Valentin Plugaru <valentin.plugaru@uni.lu>
 Vivek Goyal <vgoyal@redhat.com>
+wdlkmpx <wdlkmpx@gmail.com>
 William Woodruff <william@yossarian.net>
 Winfried Koehler <w_scan@gmx-topmail.de>
 winndows <winndows@163.com>
 Xiubo Li <xiubli@redhat.com>
+Yaroslav Halchenko <debian@onerussian.com>
 y <tofik.sonono@intel.com>
 Yuri Per <yuri@acronis.com>
 Zhansong Gao <zhsgao@hotmail.com>
index 0b855675707826faa8f7281d4a0a7dce4be05e22..f1938060c5c94c4befc923928204d7350399f1cc 100644 (file)
@@ -1,3 +1,13 @@
+libfuse 3.15.0 (2023-06-09)
+===========================
+
+* Improved support for some less common systems (32 bit, alternative libcs)
+
+* Unsupported mount options are no longer silently accepted.
+
+* auto_unmount is now compatible with allow_other.
+
+
 libfuse 3.14.1 (2023-03-26)
 ===========================
 
index f63b22a41b51f35788cb950d082481548b84d260..3a1e1f89ed27a4e0a7532916939f8a26cb4966ba 100644 (file)
@@ -29,7 +29,7 @@
 #define FUSE_MAJOR_VERSION 3
 
 /** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 14
+#define FUSE_MINOR_VERSION 15
 
 #define FUSE_MAKE_VERSION(maj, min)  ((maj) * 100 + (min))
 #define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
index 288e7fc90e789c873a67f7bfefb4a8562a16d0b2..7aa4e0d47d63f0cdc49f325e655c8ebfc20df214 100644 (file)
@@ -1,4 +1,4 @@
-project('libfuse3', ['c'], version: '3.14.1',
+project('libfuse3', ['c'], version: '3.15.0',
         meson_version: '>= 0.51',
         default_options: [
             'buildtype=debugoptimized',