Update version.h and release notes for the e2fsprogs 1.36-rc4 release.


diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index a036eb6..5dccb68 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,5 +1,5 @@
-E2fsprogs 1.36-rc3 (January 18, 2005)
-======================================
+E2fsprogs 1.36-rc4 (January 26, 2005)
+=====================================
 
 All of the patches that were applied to Fedore Core 3's
 e2fsprogs-1.35-11.2 have been integrated, although sometimes with a
@@ -28,8 +28,46 @@
 cause fsck to ignore a parameter on fsck's command line in some rare
 cases, sigh.)
 
+Make sure e2fsprogs doesn't write garbage into the reserved portion of
+large inodes.
+
+Make sure resize2fs releases the blocks belonging to the old inode
+table blocks when moving the inode table.  (Addresses Debian Bug:
+#290894)
+
+Skip the r_resize_inode test if resize2fs is not compiled (due to
+configure --disable-resizer)
+
+E2fsck now checks the summary filesystem accounting information, and
+if any of the information is obviously wrong, it will force a full
+filesystem check.  (Addresses Debian Bug #291571)
+
+Fix e2fsck to not complain when the resize_inode feature is enabled,
+s_reserved_gdt_blocks is zero, and there is no DIND block allocated in
+the resize inode.
+
+Add new utility program, copy_sparse.c, which is very useful
+for dealing with large sparse files (such as e2image files).
+
+Add support for jnl_blocks[] for debugfs's set_super_value.
+
+Fix filefrag so that it works correctly with sparse files.
+
+Add interpretation of OS Creator values for FreeBSD and Lites in mke2fs
+and dumpe2fs.
+
+Change blkid to test for NTFS first because Windows sometimes doesn't
+clear enough of the parition to confuse the probing routines into
+thinking the old filesystem type is still valid.  (Addresses Debian
+Bug #291990)
+
 Add support for swap partition label and uuid's in the blkid library.
 
+Add support to the blkid library to recognize Oracle ASM volumes.
+
+Make blkid -t display all devices that match the specified criteria,
+not just the first one.  (Addresses Debian Bug #290530)
+
 Badblocks will now correctly display block numbers greater than
 999,999,999 in its progress display.
 
@@ -198,6 +236,8 @@
 
 Fix build of mke2fs.static.
 
+Add basic ext2fs library support for large (EA in inode) inodes.
+
 The test_io mechanism can now abort after n reads or writes to a
 particular block.  The block is specified by TEST_IO_BLOCK environment
 variable, and the read/write count by the TEST_IO_READ_ABORT and
@@ -223,6 +263,13 @@
 
 Make e2fsprogs portable to Solaris and FreeBSD systems.
 
+Add blkid_get_library_version() and blkid_parse_version_string()
+functions to the blkid library.
+
+Add pkg-config files for e2fsprogs's libraries.
+
+Fix "make uninstall" to so that it removes everything that is installed.
+
 
 E2fsprogs 1.35 (February 28, 2004) 
 ==================================
diff --git a/debian/changelog b/debian/changelog
index ce038fe..fefa8c6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,29 @@
+e2fsprogs (1.36rc4-1) unstable; urgency=low
+
+  * Fix a bug in resize2fs where we don't release the blocks belonging to
+    the old inode table blocks when we move the inode table.
+    (Closes: #290894)
+  * Make sure that we don't write garbage when writing a large inode.
+  * Check NTFS ahead of other filesystems since Windows doesn't always
+    clearing enough of the partition to avoid false positives with older
+    filesystems.  (Closes: #291990)
+  * E2fsck now checks the summary filesystem accounting information, and
+    if any of the information is obviously wrong, it will force a full
+    filesystem check.  (Closes: #291571)
+  * Clarified and updated tune2fs and blkid man pages
+  * Fix e2fsck to not complain when the resize_inode feature is enabled,
+    s_reserved_gdt_blocks is zero, and there is no DIND block allocated in
+    the resize inode.
+  * Fix blkid -t to display all devices that match the specified criteria,
+    not just the first one.  (Closes: #290530)
+  * Add support for the blkid library to recognize Oracle ASM volumes.
+  * Add set_super_value jnl_blocks[] in debugfs.
+  * Fix the filefrag program so that it works correctly with sparse files.
+  * Fix portability problems with FreeBSD, Solaris, and Intel C++ 8.1.
+  * Add support for FreeBSD and Lites as OS Creator values.
+
+ -- Theodore Y. Ts'o <tytso@mit.edu>  Wed, 26 Jan 2005 10:22:02 -0500
+
 e2fsprogs (1.36rc3-2) unstable; urgency=low
 
   * Remove debugging printf's from e2image's -s code.
diff --git a/version.h b/version.h
index 73303d8..d1ac05b 100644
--- a/version.h
+++ b/version.h
@@ -6,5 +6,5 @@
  * Ts'o.  This file may be redistributed under the GNU Public License.
  */
 
-#define E2FSPROGS_VERSION "1.36-rc3"
-#define E2FSPROGS_DATE "18-Jan-2005"
+#define E2FSPROGS_VERSION "1.36-rc4"
+#define E2FSPROGS_DATE "26-Jan-2005"