aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2006-12-07 08:08:39 -0500
committerJeff Garzik <jeff@garzik.org>2006-12-07 08:08:39 -0500
commit705dc39872da9676a4fc613a961cce1c879876b5 (patch)
treed4178870491e88e003ee8e4a0687fd999ab5ba9a
parente5071a33cebbfddc7b21b6d41e90c4fc9b820853 (diff)
downloaddbfs-705dc39872da9676a4fc613a961cce1c879876b5.tar.gz
Release version 0.6. Correct copyright to reflect Red Hat.
-rw-r--r--NEWS7
-rw-r--r--configure.ac2
-rw-r--r--dbdebugfs.c4
-rw-r--r--dbfs-backend.c4
-rw-r--r--dbfs.c4
-rw-r--r--dbfs.h4
-rw-r--r--dbfsck.c4
-rw-r--r--libdbfs.c4
-rw-r--r--mkdbfs.c4
-rw-r--r--xattr.c4
10 files changed, 30 insertions, 11 deletions
diff --git a/NEWS b/NEWS
index b6784bd..eae8985 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,10 @@
-Version 0.6 -- Not yet released
+Version 0.6 -- December 7, 2006
-- ...
+- Red Hat should have been listed in copyrights
+- Fix a memory corruption bug, preventing useful use of the fs
+- read operation is less expensive
+- updated to FUSE 2.6.0
Version 0.5 -- November 8, 2006
diff --git a/configure.ac b/configure.ac
index edf770e..3692762 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-AC_INIT(fuse-dbfs, 0.6git, [Jeff Garzik <jgarzik@pobox.com>])
+AC_INIT(fuse-dbfs, 0.6, [Jeff Garzik <jgarzik@pobox.com>])
AC_PREREQ(2.52)
AC_CONFIG_SRCDIR([dbfs.c])
AM_INIT_AUTOMAKE([gnu])
diff --git a/dbdebugfs.c b/dbdebugfs.c
index c7e6edf..8549a8f 100644
--- a/dbdebugfs.c
+++ b/dbdebugfs.c
@@ -1,6 +1,8 @@
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/dbfs-backend.c b/dbfs-backend.c
index b37eae3..cec22b8 100644
--- a/dbfs-backend.c
+++ b/dbfs-backend.c
@@ -1,6 +1,8 @@
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/dbfs.c b/dbfs.c
index 749ae86..935d0ee 100644
--- a/dbfs.c
+++ b/dbfs.c
@@ -1,6 +1,8 @@
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/dbfs.h b/dbfs.h
index e74b0ca..5ac96da 100644
--- a/dbfs.h
+++ b/dbfs.h
@@ -2,7 +2,9 @@
#define __DBFS_H__
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/dbfsck.c b/dbfsck.c
index ae77597..a71216f 100644
--- a/dbfsck.c
+++ b/dbfsck.c
@@ -1,6 +1,8 @@
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/libdbfs.c b/libdbfs.c
index 4d5122b..f0f5ef7 100644
--- a/libdbfs.c
+++ b/libdbfs.c
@@ -1,6 +1,8 @@
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/mkdbfs.c b/mkdbfs.c
index 837d94b..15b6b11 100644
--- a/mkdbfs.c
+++ b/mkdbfs.c
@@ -1,6 +1,8 @@
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/xattr.c b/xattr.c
index 339d7f9..d368249 100644
--- a/xattr.c
+++ b/xattr.c
@@ -1,6 +1,8 @@
/*
- * Copyright 2006 Jeff Garzik <jgarzik@pobox.com>
+ * Maintained by Jeff Garzik <jgarzik@pobox.com>
+ *
+ * Copyright 2006 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by