Released 3.11.0 fuse-3.11.0
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 2 May 2022 09:11:41 +0000 (10:11 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 2 May 2022 09:11:41 +0000 (10:11 +0100)
AUTHORS
ChangeLog.rst
include/fuse_common.h
meson.build

diff --git a/AUTHORS b/AUTHORS
index 050d953851bc5c067499709d7a0d73ed0925cd3c..a708165880988418c99300b10022a75dbaa557d8 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -30,6 +30,7 @@ Alex Richman <alex@richman.io>
 Amir Goldstein <amir73il@gmail.com>
 amosonn <amosonn@gmail.com>
 Anatol Pomozov <anatol.pomozov@gmail.com>
+André Schröder <andre.schroeder@andresco.de>
 Andrew Gaul <andrew@gaul.org>
 Andrew Gaul <gaul@google.com>
 Angelo G. Del Regno <kholk11@gmail.com>
@@ -42,6 +43,7 @@ AsumFace <asumface@gmail.com>
 Banglang <banglang.huang@foxmail.com>
 Baptiste Daroussin <bapt@FreeBSD.org>
 Benjamin Barenblat <bbaren@google.com>
+Bernd Schubert <bschubert@ddn.com>
 Bill Zissimooulos <billziss@navimatics.com>
 Bill Zissimopoulos <billziss@navimatics.com>
 bobrofon <ifbossfor@ya.ru>
@@ -60,8 +62,11 @@ cvs2git <>
 Dalvik Khertel <khertel@outlook.com>
 Daniel Fullmer <danielrf12@gmail.com>
 Daniel Thau <danthau@bedrocklinux.org>
+David Galeano <davidgaleano@gmail.com>
 David McNab <david@rebirthing.co.nz>
 David Sheets <sheets@alum.mit.edu>
+Dharmendra singh <dsingh@ddn.com>
+Dharmendra Singh <dsingh@ddn.com>
 divinity76 <divinity76@gmail.com>
 DrDaveD <2129743+DrDaveD@users.noreply.github.com>
 Dr. David Alan Gilbert <dgilbert@redhat.com>
@@ -80,6 +85,7 @@ ferivoz <72023087+ferivoz@users.noreply.github.com>
 Feverfew <Feverfew@users.noreply.github.com>
 Florian Weimer <fw@deneb.enyo.de>
 Forty-Bot <Forty-Bot@users.noreply.github.com>
+Frank Dinoff <fdinoff@google.com>
 Giulio Benetti <giulio.benetti@benettiengineering.com>
 Giuseppe Scrivano <giuseppe@scrivano.org>
 guraga <rulumasi@dodsi.com>
@@ -107,6 +113,7 @@ Junichi Uekawa <dancer@debian.org>
 Junichi Uekawa <dancerj@gmail.com>
 Junichi Uekawa <dancer@netfort.gr.jp>
 Kangjing "Chaser" Huang <huangkangjing@gmail.com>
+Ken Schalk <kcs-github@xorian.net>
 Kevin Vigor <kvigor@fb.com>
 Kirill Smelkov <kirr@nexedi.com>
 Laszlo Boszormenyi (GCS) <gcs@debian.org>
@@ -115,7 +122,9 @@ Laurent Bigonville <bigon@users.noreply.github.com>
 Lilo Huang <lilohuang@users.noreply.github.com>
 Liu Bo <liub.liubo@gmail.com>
 Li-Wen Hsu <lwhsu.github@lwhsu.org>
+lixiaokeng <63774002+lixiaokeng@users.noreply.github.com>
 lixiaokeng <lixiaokeng@huawei.com>
+Luis Henriques <luis-henrix@users.noreply.github.com>
 Madan Valluri <mvalluri@cumulus-systems.com>
 Manuel Jacob <me@manueljacob.de>
 Marcin Sulikowski <marcin.sulikowski@editshare.com>
@@ -125,6 +134,7 @@ Martin Pärtel <martin.partel@gmail.com>
 Mateusz Urbańczyk <murbanczyk@qed.ai>
 Mattias Nissler <mnissler@chromium.org>
 maxice8 <30738253+maxice8@users.noreply.github.com>
+Maximilian Heinzler <m.heinzler@heinzler.de>
 Max Krasnyansky <maxk@kernel.org>
 Michael Forney <mforney@mforney.org>
 Michael Grigoriev <mag@luminal.org>
index 3c3be1e915bdfebec172f5eb7e2bec7d0eeee919..f4cb07ce6ac745efcd0995f164851efd0452a94b 100644 (file)
@@ -1,15 +1,15 @@
-Unreleased Changes
-==================
+libfuse 3.11.0 (2022-05-02)
+===========================
 
 * Add support for flag FOPEN_NOFLUSH for avoiding flush on close.
-
 * Fixed returning an error condition to ioctl(2)
 
+
 libfuse 3.10.5 (2021-09-06)
 ===========================
 
 * Various improvements to make unit tests more robust.
-  
+
 
 libfuse 3.10.4 (2021-06-09)
 ===========================
index d7481befdfa4cb7c9d75131e3d936a490dc9d456..3f7260cb3ff6229dab624c85e2acc580ffb6bc91 100644 (file)
@@ -23,7 +23,7 @@
 #define FUSE_MAJOR_VERSION 3
 
 /** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 10
+#define FUSE_MINOR_VERSION 11
 
 #define FUSE_MAKE_VERSION(maj, min)  ((maj) * 100 + (min))
 #define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
index 8a6587b43229d1cc83814d473863ff6ccf3ad39f..342dee1c1e37cfec5043ba050bcd6ff3e0a95ec8 100644 (file)
@@ -1,4 +1,4 @@
-project('libfuse3', ['c'], version: '3.10.5',
+project('libfuse3', ['c'], version: '3.11.0',
         meson_version: '>= 0.42',
         default_options: [
             'buildtype=debugoptimized',