Released 3.0.0 fuse-3.0.0
authorNikolaus Rath <Nikolaus@rath.org>
Fri, 9 Dec 2016 17:33:01 +0000 (09:33 -0800)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 9 Dec 2016 17:33:01 +0000 (09:33 -0800)
AUTHORS
ChangeLog.rst
configure.ac

diff --git a/AUTHORS b/AUTHORS
index 17b333345f3d58c0f7dccc56212fc2ddab0aa631..2f85c293fd172cd69052dbf223201367977fb0dc 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -38,6 +38,7 @@ Feng Shuo <steve.shuo.feng@gmail.com>
 Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
 Ikey Doherty <michael.i.doherty@intel.com>
 Jan Blumschein <jan@jan-blumschein.de>
+Jay Hankins <jay-hankins@users.noreply.github.com>
 Joachim Schiele <joachim.schiele@daimler.com>
 Joachim Schiele <js@lastlog.de>
 John Muir <john@jmuir.com>
index 0bab1d07b68040349f8ce29cf185eee59391423d..56847cc67ba3eb43a8151c33547c553f3872cc03 100644 (file)
@@ -1,5 +1,20 @@
-FUSE 3.0.0-rc3 (2016-11-29)
-===========================
+libfuse 3.0.0 (2016-12-08)
+==========================
+
+* NOTE TO PACKAGERS:
+
+  libfuse 3 is designed to be co-installable with libfuse 2. However,
+  some files will be installed by both libfuse 2 and libfuse 3
+  (e.g. /etc/fuse.conf, the udev and init scripts, and the
+  mount.fuse(8) manpage). These files should be taken from
+  libfuse 3. The format/content is guaranteed to remain backwards
+  compatible with libfuse 2.
+
+  We recommend to ship libfuse2 and libfuse3 in three separate
+  packages: a libfuse-common package that contains files shared by
+  libfuse 2+3 (taken from the libfuse3 tarball), and libfuse2 and
+  libfuse3 packages that contain the shared library and helper
+  programs for the respective version.
 
 * Fixed test errors when running tests as root.
 
@@ -31,28 +46,10 @@ FUSE 3.0.0-rc3 (2016-11-29)
   changed. Previously, this was handled by the kernel but subject to
   race conditions.
 
-* The ``allow_other`` and ``allow_root`` mount options (accepted by
-  `fuse_session_new()`) may now be specified together. In this case,
-  ``allow_root`` takes precedence.
-
-
-FUSE 3.0.0-rc2 (2016-11-06)
-===========================
-
-* Fixed documentation of chmod, chown, truncate, utimens and getattr
-  handlers. The struct fuse_file_info pointer may be NULL even if the
-  file is open.
-
 * The fusermount and mount.fuse binaries have been renamed to
   fusermount3 and mount.fuse3 to allow co-installation of libfuse 2.x
   and 3.x
 
-FUSE 3.0.0-rc1 (2016-10-28)
-===========================
-
-This is a release candidate. Functionality and API will correspond
-to the final release unless any serious bugs are discovered.
-
 * Added a `max_read` field to `struct fuse_conn_info`. For the time
   being, the maximum size of read requests has to be specified both
   there *and* passed to fuse_session_new() using the ``-o
@@ -102,7 +99,8 @@ to the final release unless any serious bugs are discovered.
 
 * The chmod, chown, truncate, utimens and getattr handlers of the
   high-level API now all receive an additional struct fuse_file_info
-  pointer. This pointer is NULL if the file is not currently open.
+  pointer (which, however, may be NULL even if the file is currently
+  open).
 
   The fgetattr and ftruncate handlers have become obsolete and have
   been removed.
@@ -159,18 +157,15 @@ to the final release unless any serious bugs are discovered.
   always active. File systems that want to limit the size of write
   requests should use the ``-o max_write=<N>`` option instead.
 
-
-FUSE 3.0.0pre0 (2016-10-03)
-============================
-
-* This is a preview release. Functionality and API may still change
-  before the 3.0.0 release.
-
 * The `fuse_lowlevel_new` function has been renamed to
   `fuse_session_new` and no longer interprets the --version or --help
   options. To print help or version information, use the new
   `fuse_lowlevel_help` and `fuse_lowlevel_version` functions.
 
+* The ``allow_other`` and ``allow_root`` mount options (accepted by
+  `fuse_session_new()`) may now be specified together. In this case,
+  ``allow_root`` takes precedence.
+
 * There are new `fuse_session_unmount` and `fuse_session_mount`
   functions that should be used in the low-level API. The `fuse_mount`
   and `fuse_unmount` functions should be used with the high-level API
index 48fda9e6b488b63724a1342dcb00df5a84ce75fd..d51e10abbd2241dc8671045680b685febddd19bc 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(fuse, 3.0.0rc3)
+AC_INIT(fuse, 3.0.0)
 AC_PREREQ(2.59d)
 AC_CONFIG_MACRO_DIR([m4])
 AC_CANONICAL_TARGET