Released libfuse 3.0.2 fuse-3.0.2
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 24 May 2017 20:56:11 +0000 (13:56 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 24 May 2017 20:56:11 +0000 (13:56 -0700)
AUTHORS
ChangeLog.rst
configure.ac
lib/Makefile.am
meson.build

diff --git a/AUTHORS b/AUTHORS
index 740dc80ce6ad772ae7a8a470a162f0ee16f4215d..b27b4c8954dc03785f15dd0791c65c8639c73080 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -22,6 +22,8 @@ Anatol Pomozov <anatol.pomozov@gmail.com>
 Antonio SJ Musumeci <trapexit@spawn.link>
 Arunav Sanyal <Khalian@users.noreply.github.com>
 bobrofon <ifbossfor@ya.ru>
+Brian Naylor <bnaylor@netapp.com>
+Carlos Maiolino <cmaiolino-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
 Christopher Harrison <ch12@sanger.ac.uk>
 Consus <consus@gmx.com>
 Csaba Henk <csaba.henk@creo.hu>
@@ -68,5 +70,6 @@ Riku Voipio <riku.voipio@linaro.org>
 Roland Bauerschmidt <rb@debian.org>
 Sam Stuewe <halosghost@archlinux.info>
 Sebastian Pipping <sebastian@pipping.org>
+Tej Chajed <tchajed@mit.edu>
 therealneworld@gmail.com <therealneworld@gmail.com>
 Winfried Koehler <w_scan@gmx-topmail.de>
index 78278d185f1d736846d36c2c279f7d334a8b4210..2b119a99d36bd0384b790a076060e2d9140219f7 100644 (file)
@@ -1,3 +1,14 @@
+libfuse 3.0.2 (2017-05-24)
+==========================
+
+* Option parsing for the high-level API now works correctly
+  (previously, default values would override specified values).
+* Tests should now build (and run) under FreeBSD.
+* Improved documentation of `struct fuse_context`
+* Internal: calculate request buffer size from page size and kernel
+  page limit instead of using hardcoded 128 kB limit.
+
+
 libfuse 3.0.1 (2017-04-10)
 ==========================
 
index 6a8d63f57139c6d5536bfc6a188e8f736ba93e40..fd94a18467d1b354056feca883908e0f9f92bc44 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(fuse, 3.0.1)
+AC_INIT(fuse, 3.0.2)
 AC_PREREQ(2.59d)
 AC_CONFIG_MACRO_DIR([m4])
 AC_CANONICAL_TARGET
index f794d27c40219b283195fce6bc739fc1e91d6eb8..2ed8b5f5a337e71b8fb73905c1ac2b31ce14542c 100644 (file)
@@ -33,7 +33,7 @@ libfuse3_la_SOURCES =         \
        $(iconv_source)         \
        $(mount_source)
 
-libfuse3_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 3:0:1 \
+libfuse3_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 3:0:2 \
        -Wl,--version-script,$(srcdir)/fuse_versionscript
 
 if NETBSD
index b13ed06b0971972c3e704895cfa52e363c3345ac..ad934de624cbae4cdc83d044db3f29451344c954 100644 (file)
@@ -1,7 +1,7 @@
 # Attention, emacs, please use -*- mode: python -*-
 # (even though this isn't actually Python code)
 
-project('libfuse3', 'c', version: '3.1.0',
+project('libfuse3', 'c', version: '3.0.2',
         meson_version: '>= 0.38',
         default_options: [ 'buildtype=plain' ])