Released 3.10.0 fuse-3.10.0
authorNikolaus Rath <Nikolaus@rath.org>
Fri, 9 Oct 2020 09:47:25 +0000 (10:47 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 9 Oct 2020 09:47:25 +0000 (10:47 +0100)
AUTHORS
ChangeLog.rst
include/fuse_common.h
meson.build

diff --git a/AUTHORS b/AUTHORS
index 07dac773da89c1cbafb1eb639c04531608e0a1ae..239d66a2c9a0ce58633c26e84d94b2d197a8f5e3 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -66,11 +66,13 @@ Emmanuel Dreyfus <manu@netbsd.org>
 Enke Chen <enkechen@yahoo.com>
 Eric Engestrom <eric@engestrom.ch>
 Eric Wong <normalperson@yhbt.net>
+Etienne DublĂ© <etienne.duble@imag.fr>
 Fabian Vogt <fabian@ritter-vogt.de>
 Fabrice Bauzac <fbauzac@amadeus.com>
 Fabrice Fontaine <fontaine.fabrice@gmail.com>
 Fedor Korotkov <fedor.korotkov@gmail.com>
 Feng Shuo <steve.shuo.feng@gmail.com>
+ferivoz <72023087+ferivoz@users.noreply.github.com>
 Florian Weimer <fw@deneb.enyo.de>
 Forty-Bot <Forty-Bot@users.noreply.github.com>
 Giuseppe Scrivano <giuseppe@scrivano.org>
@@ -150,6 +152,8 @@ Tej Chajed <tchajed@mit.edu>
 tenzap <46226844+tenzap@users.noreply.github.com>
 therealneworld@gmail.com <therealneworld@gmail.com>
 Tomasz Kulasek <34129113+tkulasek@users.noreply.github.com>
+Tom Callaway <spot@fedoraproject.org>
+Tom Callaway <spotrh@gmail.com>
 Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
 userwithuid <userwithuid@gmail.com>
 Valentin Plugaru <valentin.plugaru@uni.lu>
index 4cb14788d8ae3d181efd49b5db6e02767b32a489..8c1bcee2d411a238d0fa219fbe28e58d07ddc725 100644 (file)
@@ -1,7 +1,8 @@
-Unreleased Changes
-==================
+libfuse 3.10.0 (2010-10-09)
+===========================
 
 * Add FUSE_CAP_CACHE_SYMLINKS: allow caching symlinks in kernel page cache.
+* Various minor bugfixes and improvements.  
 
 libfuse 3.9.4 (2020-08-09)
 ==========================
index f5bfb6a9f6c60c66d9f673445658ce163d9c3f3b..ea4bdb02427d244c24dd87519ca3883e4a659f75 100644 (file)
@@ -23,9 +23,9 @@
 #define FUSE_MAJOR_VERSION 3
 
 /** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 9
+#define FUSE_MINOR_VERSION 10
 
-#define FUSE_MAKE_VERSION(maj, min)  ((maj) * 10 + (min))
+#define FUSE_MAKE_VERSION(maj, min)  ((maj) * 100 + (min))
 #define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
 
 #ifdef __cplusplus
index e83d441637edbf098dc6dcc62619c79a492c50c3..71ec6de04a8a3af3c75a0e1790189eb6920c63c8 100644 (file)
@@ -1,4 +1,4 @@
-project('libfuse3', ['c'], version: '3.9.3',
+project('libfuse3', ['c'], version: '3.10.0',
         meson_version: '>= 0.42',
         default_options: [ 'buildtype=debugoptimized' ])