aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-08-15 15:10:48 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-08-15 15:10:48 +0000
commitc43f9411236723df9b0881e0cca37ea69fcbb07a (patch)
tree702ec62f7ddcff8c43f52db600279e6189723859
parentc12c0ad0ceab266ea0f6c0eaae92ee923d4da949 (diff)
downloadlibfuse-c43f9411236723df9b0881e0cca37ea69fcbb07a.tar.gz
release 2.4-pre1
-rw-r--r--ChangeLog4
-rw-r--r--NEWS29
-rw-r--r--configure.in2
-rw-r--r--kernel/configure.ac2
4 files changed, 35 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e41d1a9..c3dbd47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2005-08-15 Miklos Szeredi <miklos@szeredi.hu>
+ * Released 2.4.0-pre1
+
+2005-08-14 Miklos Szeredi <miklos@szeredi.hu>
+
* lib: cleaned up (or messed up, depending on your POV) the low
level library API. Hopefully this is close to the final form.
diff --git a/NEWS b/NEWS
index 27b65de..ba1d668 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,32 @@
+What is new in 2.4
+
+ - Simplify device opening. Now '/dev/fuse' is a requirement
+
+ - Allow module auto-loading if user has access to '/dev/fuse'
+
+ - Allow mounting over a regular file for unprivileged users
+
+ - Allow mounting of arbitrary FUSE filesystems from /etc/fstab
+
+ - New mount options: 'umask=M', 'uid=N', 'gid=N'
+
+ - Check for non-empty mountpoint, and refuse mount by default. New
+ mount option: 'nonempty'
+
+ - Low level (inode based) API added
+
+ - File locking primitives added to kernel and low level API
+
+ - Add 'access' method to kernel, and library APIs
+
+ - Allow 'direct_io' and 'keep_cache' options to be set on a
+ case-by-case basis on open.
+
+ - Add 'attr_timeout' and 'entry_timeout' mount options to the
+ high-level library. Until now these timeouts were fixed at 1 sec.
+
+ - Some bugfixes
+
What is new in 2.3
- Add new directory related operations: opendir(), readdir(),
diff --git a/configure.in b/configure.in
index 4a5a493..8529c43 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-AC_INIT(fuse, 2.4.0-pre0)
+AC_INIT(fuse, 2.4.0-pre1)
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(include/config.h)
diff --git a/kernel/configure.ac b/kernel/configure.ac
index 7e7cf2b..ff29423 100644
--- a/kernel/configure.ac
+++ b/kernel/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(fuse-kernel, 2.4.0-pre0)
+AC_INIT(fuse-kernel, 2.4.0-pre1)
AC_CONFIG_HEADERS([config.h])
AC_PROG_INSTALL