summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.txt2
-rw-r--r--doc/html/ADGuide/RELEASE.txt20
-rw-r--r--release_docs/RELEASE.txt2
-rw-r--r--src/H5public.h4
4 files changed, 17 insertions, 11 deletions
diff --git a/README.txt b/README.txt
index 8efe52a..e639378 100644
--- a/README.txt
+++ b/README.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.4.3-snap0 currently under development
+HDF5 version 1.4.3-snap1 currently under development
Please refer to the INSTALL file for installation instructions.
------------------------------------------------------------------------------
diff --git a/doc/html/ADGuide/RELEASE.txt b/doc/html/ADGuide/RELEASE.txt
index 98283f3..d881216 100644
--- a/doc/html/ADGuide/RELEASE.txt
+++ b/doc/html/ADGuide/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.4.2-post0 released on Sat Aug 11 03:46:29 CDT 2001
+HDF5 version 1.4.3-snap0 released on Sat Sep 15 04:23:12 CDT 2001
==============================================================================
@@ -36,6 +36,18 @@ CONTENTS
New Features
============
+ * A helper script called ``h5cc'', which helps compilation of HDF5
+ programs, is now distributed with HDF5. See the reference manual
+ for information on how to use this feature.
+ * Added perform programs to test the HDF5 library performance. Programs
+ are installed in directory perform/.
+ * Improved performance of byte-swapping during data conversions.
+ * Changed prototype for H5Awrite from:
+ H5Awrite(hid_t attr_id, hid_t type_id, void *buf)
+ to:
+ H5Awrite(hid_t attr_id, hid_t type_id, const void *buf)
+
+
Bug Fixes since HDF5-1.4.2 Release
==================================
@@ -200,12 +212,6 @@ Known Problems
* IRIX 6.5 fails to compile if configured with --enable-static-exec.
- * For 24-bit image conversion from H4->H5, the current conversion is
- not consistent with HDF5 image specification.
-
- * In some cases, and SDS with an UNLIMITED dimension that has not
- been written (current size = 0) is not converted correctly.
-
* After "make install" or "make install-doc" one may need to reload
the source from the tar file before doing another build.
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index a5e8e73..72bf4a3 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.4.3-snap0 currently under development
+HDF5 version 1.4.3-snap1 currently under development
==============================================================================
diff --git a/src/H5public.h b/src/H5public.h
index 9c1eb77..251fb27 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 3 /* For tweaks, bug-fixes, or development */
-#define H5_VERS_SUBRELEASE "snap0" /* For pre-releases like snap0 */
+#define H5_VERS_SUBRELEASE "snap1" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.4.3-snap0" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.4.3-snap1" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)