ChangeLog, script:
  f_swapfs: Fix script to ignore the version string header which debugfs
  	now prints when it starts up.
libext2fs.texinfo:
  Update copyright notice and revision date.
RELEASE-NOTES, version.h:
  Update for 1.12 release.

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 03c60eb..e1ac441 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,4 +1,4 @@
-E2fsprogs 1.12 (February 20, 1998)
+E2fsprogs 1.12 (July 4, 1998)
 ==================================
 
 E2fsprogs now works with glibc (at least with the version shipped wtih
@@ -9,7 +9,12 @@
 complaints about libc developers don't understand the concept of
 compatibility with previous versions of libc.)
 
-Added support for the EXT2_FEATURE_INCOMPAT_DIRNAME_SIZE feature,
+The ext2fs library now writes out the block group number in each of
+the superblock copies.  This makes it easier to automatically
+determine the starting block group of the filesystem when the block
+group information is trashed.
+
+Added support for the EXT2_FEATURE_INCOMPAT_FILETYPE feature,
 which means that e2fsprogs will ignore the high 8 bits of the
 directory entry's name_len field, so that it can be used for other
 purposes.
@@ -31,6 +36,12 @@
 filesystem size larger than the apparent size of the device it will
 print a warning message and ask if the user wants to proceed.
 
+E2fsck has a new option -C, which sends completion information to the
+specified file descriptor.  For the most part, this is intended for
+programs to use, although -C 0 will print a spinning character to the
+stdout device, which may be useful for users who want to see something
+happening while e2fsck goes about its business.
+
 Fixed a bug in e2fsck which could cause a core dump when it needs to
 expand the /lost+found directory, and sometimes the bitmaps haven't
 been merged in.  Also fixed a related bug where ext2fs_write_dir_block
diff --git a/doc/libext2fs.texinfo b/doc/libext2fs.texinfo
index 25ecd63..fa115c5 100644
--- a/doc/libext2fs.texinfo
+++ b/doc/libext2fs.texinfo
@@ -30,7 +30,7 @@
 This file documents the ext2fs library, a library for manipulating the
 ext2 filesystem.
 
-Copyright (C) 1997 Theodore Ts'o
+Copyright (C) 1997, 1998 Theodore Ts'o
 
 Permission is granted to make and distribute verbatim copies of
 this manual provided the copyright notice and this permission notice
@@ -61,7 +61,7 @@
 @title The EXT2FS Library
 @subtitle The EXT2FS Library
 @subtitle Version 1.12
-@subtitle April 1997
+@subtitle July 1998
 
 @author by Theodore Ts'o
 
@@ -76,7 +76,7 @@
 
 @page
 @vskip 0pt plus 1filll
-Copyright @copyright{} 1997 Theodore Ts'o
+Copyright @copyright{} 1997, 1998 Theodore Ts'o
 
 @sp 2
 
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 39502fc..088b5cf 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,8 @@
+1998-07-05  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+	* f_swapfs: Fix script to ignore the version string header which
+		debugfs now prints when it starts up.
+
 1998-03-23  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
 	* f_messy_inode: Modify test to deal with changes to support
diff --git a/tests/f_swapfs/script b/tests/f_swapfs/script
index 69e51e6..7e32a56 100644
--- a/tests/f_swapfs/script
+++ b/tests/f_swapfs/script
@@ -22,9 +22,10 @@
 sed -e '2d' $OUT.new >> $OUT
 
 echo Running debugfs.... >> $OUT
-$DEBUGFS -f $test_dir/debugfs.cmd $TMPFILE >> $OUT 2>&1
+$DEBUGFS -f $test_dir/debugfs.cmd $TMPFILE > $OUT.new 2>&1 
 status=$?
-echo Exit status is $status >> $OUT
+echo Exit status is $status >> $OUT.new
+sed -e '1d' $OUT.new >> $OUT
 
 echo e2fsck $VERIFY_FSCK_OPT -N test_filesys > $OUT.new
 $FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1
@@ -39,9 +40,10 @@
 sed -e '2d' $OUT.new >> $OUT
 
 echo Running debugfs.... >> $OUT
-$DEBUGFS -f $test_dir/debugfs.cmd $TMPFILE >> $OUT 2>&1
+$DEBUGFS -f $test_dir/debugfs.cmd $TMPFILE > $OUT.new 2>&1 
 status=$?
-echo Exit status is $status >> $OUT
+echo Exit status is $status >> $OUT.new
+sed -e '1d' $OUT.new >> $OUT
 
 echo e2fsck $VERIFY_FSCK_OPT -N test_filesys > $OUT.new
 $FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1
diff --git a/version.h b/version.h
index 1465656..af9e3c1 100644
--- a/version.h
+++ b/version.h
@@ -6,5 +6,5 @@
  * redistributed under the GNU Public License.
  */
 
-#define E2FSPROGS_VERSION "1.12-WIP"
-#define E2FSPROGS_DATE "2-Apr-98"
+#define E2FSPROGS_VERSION "1.12"
+#define E2FSPROGS_DATE "4-Jul-98"