aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS7
-rw-r--r--ChangeLog.rst10
-rw-r--r--include/fuse_common.h2
-rw-r--r--meson.build2
4 files changed, 19 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 9463d65..95ee068 100644
--- 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>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 0b85567..f193806 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -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)
===========================
diff --git a/include/fuse_common.h b/include/fuse_common.h
index f63b22a..3a1e1f8 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -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)
diff --git a/meson.build b/meson.build
index 288e7fc..7aa4e0d 100644
--- a/meson.build
+++ b/meson.build
@@ -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',