aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-05-24 13:56:11 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-05-24 13:56:11 -0700
commite90bb40f9cddd3dfc403328de21f538b77f814b3 (patch)
tree4407b9deba564ed69c2b131113162839b24e6e14
parentcc96e8d783fb7db21430e36172ab98ad70f9927d (diff)
Released libfuse 3.0.2
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog.rst11
-rw-r--r--configure.ac2
-rw-r--r--lib/Makefile.am2
-rw-r--r--meson.build2
5 files changed, 17 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 740dc80..b27b4c8 100644
--- 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>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 78278d1..2b119a9 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -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)
==========================
diff --git a/configure.ac b/configure.ac
index 6a8d63f..fd94a18 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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
diff --git a/lib/Makefile.am b/lib/Makefile.am
index f794d27..2ed8b5f 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -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
diff --git a/meson.build b/meson.build
index b13ed06..ad934de 100644
--- a/meson.build
+++ b/meson.build
@@ -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' ])