version 1.9 fuse_1_9
authorMiklos Szeredi <miklos@szeredi.hu>
Thu, 14 Oct 2004 13:33:39 +0000 (13:33 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Thu, 14 Oct 2004 13:33:39 +0000 (13:33 +0000)
ChangeLog
Makefile.am
NEWS
configure.in
kernel/Makefile.in

index 5d33766f5aec98d0e05ec58b0e4ce0b0c346c34f..efef652290e6131d27c11ae119d01f2f52d72abf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
+
+       * Released 1.9
+
 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
 
        * Don't allow fuse_flush() to be interrupted (bug found by David
index cc75c4ddb693ee38d17732095c0f6aef808fe6de..f319a927650d3ba7c8b1f564cbf31fb63bb5ea56 100644 (file)
@@ -6,4 +6,5 @@ EXTRA_DIST =                    \
        fuse.spec               \
        README*                 \
        Filesystems             \
-       BUGS
+       BUGS                    \
+       doc/how-fuse-works
diff --git a/NEWS b/NEWS
index 1994f3dfec7f64ab09a089ce2aa2ecc43e5b92b7..13a84e125fcead003870173f09da06028bb6bbbe 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,40 @@
+What is new in 1.9
+
+* Lots of bugs fixed
+
+* Minor modifications to the library API
+
+* Improvements to the kernel/userspace interface
+
+* Mounting by non-root made more secure
+
+* Build shared library in addition to the static one
+
+* Consolidated mount options
+
+* Optimized reading under 2.6 kernels
+
+* Direct I/O support
+
+* Support file I/O on deleted files
+
+* Extended attributes support
+
+What is new in 1.3
+
+* Thanks to user bugreports and stress testing with LTP and sfx-linux
+a number of bugs were fixed, some quite serious.
+
+* Fix compile problems with recent SuSE kernles
+
+What is new in 1.2
+
+* Fix mount problems on recent 2.6 kernels with SELinux enabled
+
+* Fixed writing files lager than 2GBytes
+
+* Other bugfixes
+
 What is new in 1.1
 
 * Support for the 2.6 kernels
index 0e76491952a2bf0fe2c1e4c4a92d8f97ea1e26af..cd4a856b072c964b064f571565c5c5519125c482 100644 (file)
@@ -1,5 +1,5 @@
 AC_INIT(lib/fuse.c)
-AM_INIT_AUTOMAKE(fuse, 1.1)
+AM_INIT_AUTOMAKE(fuse, 1.9)
 AM_CONFIG_HEADER(include/config.h)
 
 m4_ifdef([LT_INIT],
index aa6dd60ffa76208d37c9b0236ceead97699a289b..7850b8356130ac710aaf801e241319b212551518 100644 (file)
@@ -6,6 +6,7 @@ mkdir_p = @mkdir_p@
 majver = @majver@
 
 DISTFILES = Makefile.in dev.c dir.c file.c inode.c util.c fuse_i.h
+COMPATDISTFILES = compat/parser.c compat/parser.h
 
 fusemoduledir = @kmoduledir@/kernel/fs/fuse
 
@@ -34,9 +35,10 @@ distclean: clean
 
 maintainer-clean: distclean
 
-distdir: $(DISTFILES)
+distdir: $(DISTFILES) $(COMPATDISTFILES)
        cp -p $(DISTFILES) $(distdir)
-
+       mkdir $(distdir)/compat
+       cp -p $(COMPATDISTFILES) $(distdir)/compat
 
 ifeq ($(majver), 2.4)