From 0105e061b97a97d9836128aea5bcdfc9593c9b82 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Fri, 9 Oct 2020 10:47:25 +0100 Subject: [PATCH] Released 3.10.0 --- AUTHORS | 4 ++++ ChangeLog.rst | 5 +++-- include/fuse_common.h | 4 ++-- meson.build | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 07dac77..239d66a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -66,11 +66,13 @@ Emmanuel Dreyfus Enke Chen Eric Engestrom Eric Wong +Etienne Dublé Fabian Vogt Fabrice Bauzac Fabrice Fontaine Fedor Korotkov Feng Shuo +ferivoz <72023087+ferivoz@users.noreply.github.com> Florian Weimer Forty-Bot Giuseppe Scrivano @@ -150,6 +152,8 @@ Tej Chajed tenzap <46226844+tenzap@users.noreply.github.com> therealneworld@gmail.com Tomasz Kulasek <34129113+tkulasek@users.noreply.github.com> +Tom Callaway +Tom Callaway Tomohiro Kusumi userwithuid Valentin Plugaru diff --git a/ChangeLog.rst b/ChangeLog.rst index 4cb1478..8c1bcee 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -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) ========================== diff --git a/include/fuse_common.h b/include/fuse_common.h index f5bfb6a..ea4bdb0 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -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 diff --git a/meson.build b/meson.build index e83d441..71ec6de 100644 --- a/meson.build +++ b/meson.build @@ -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' ]) -- 2.30.2