summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--RELEASE.txt2
-rw-r--r--doc/html/ADGuide/RELEASE.txt23
-rw-r--r--src/H5public.h4
4 files changed, 23 insertions, 8 deletions
diff --git a/README b/README
index bfe522a..1eaf28b 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This is hdf5-1.4.1-post2 currently under development
+This is hdf5-1.4.1-post3 currently under development
Please refer to the INSTALL file for installation instructions.
------------------------------------------------------------------------------
diff --git a/RELEASE.txt b/RELEASE.txt
index 37d3a57..1d42c36 100644
--- a/RELEASE.txt
+++ b/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 library version 1.4.1-post2 currently under development
+HDF5 library version 1.4.1-post3 currently under development
================================================================================
diff --git a/doc/html/ADGuide/RELEASE.txt b/doc/html/ADGuide/RELEASE.txt
index b8778fa..c2070f7 100644
--- a/doc/html/ADGuide/RELEASE.txt
+++ b/doc/html/ADGuide/RELEASE.txt
@@ -1,6 +1,5 @@
-
-
- HDF5 Release 1.4.2 under construction
+HDF5 version 1.4.1-post2 released on Sat May 12 23:46:31 CDT 2001
+================================================================================
INTRODUCTION
@@ -37,9 +36,18 @@ CONTENTS
New Features
============
+ * File sizes greater than 2GB are now supported on Linux systems with
+ version 2.4.x or higher kernels.
+ * Added a global string variable H5_lib_vers_info_g which holds the
+ HDF5 library version information. This can be used to identify
+ an hdf5 library or hdf5 application binary.
+ Also added a verification of the consistency between H5_lib_vers_info_g
+ and other version information in the source code.
+
Bug Fixes since HDF5-1.4.1 Release
==================================
+
* Fixed bug with non-zero userblock sizes causing raw data to not
write correctly.
* Fixed problems with Pablo build and linking with non-standard MPI I/O.
@@ -47,7 +55,13 @@ Bug Fixes since HDF5-1.4.1 Release
works correctly.
* IMPORTANT: Fixed file metadata corruption bug which could cause metadata
data loss in certain situations.
-
+ * The allocation by alignment (H5Pset_alignment) feature code somehow
+ got dropped in some 1.3.x version. Re-implemented it with "new and
+ improved" algorithm. It keeps track of "wasted" file-fragment in
+ the free-list too.
+ * H5 <-> GIF convertor has been added. This is available under
+ tools/gifconv. The convertor supports the ability to create animated
+ gifs as well.
Documentation
=============
@@ -87,6 +101,7 @@ Supported Configuration Features Summary
* See "Supported Configuration Features Summary" section for the HDF5
1.4.0 release in the HISTORY.txt file.
+
Known Problems
==============
diff --git a/src/H5public.h b/src/H5public.h
index 8ef5b99..ad607f4 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -61,9 +61,9 @@
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 4 /* For minor interface/format changes */
#define H5_VERS_RELEASE 1 /* For tweaks, bug-fixes, or development */
-#define H5_VERS_SUBRELEASE "post2" /* For pre-releases like snap0 */
+#define H5_VERS_SUBRELEASE "post3" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.4.1-post2" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.4.1-post3" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)