summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHDF Admin <hdfadmin@ncsa.uiuc.edu>2002-01-05 13:24:09 (GMT)
committerHDF Admin <hdfadmin@ncsa.uiuc.edu>2002-01-05 13:24:09 (GMT)
commit84dc43d3136c423ee774c0f73515d9faecef0156 (patch)
treee80ee7761044b965cd4a95002bcd7df32c1e780c
parent1159d26906d6581dcc6017e3cd35279806f0148f (diff)
downloadhdf5-84dc43d3136c423ee774c0f73515d9faecef0156.zip
hdf5-84dc43d3136c423ee774c0f73515d9faecef0156.tar.gz
hdf5-84dc43d3136c423ee774c0f73515d9faecef0156.tar.bz2
[svn-r4781] Snapshot version 1.4 release 3 (snap10)
-rw-r--r--README.txt2
-rw-r--r--doc/html/ADGuide/RELEASE.txt23
-rw-r--r--release_docs/RELEASE.txt2
-rw-r--r--src/H5public.h4
4 files changed, 23 insertions, 8 deletions
diff --git a/README.txt b/README.txt
index c8e6e57..cec89ac 100644
--- a/README.txt
+++ b/README.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.4.3-snap10 currently under development
+HDF5 version 1.4.3-snap11 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 2b717d4..2bd4eb4 100644
--- a/doc/html/ADGuide/RELEASE.txt
+++ b/doc/html/ADGuide/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.4.3-snap9 released on Sat Dec 8 10:21:29 CST 2001
+HDF5 version 1.4.3-snap10 released on Sat Jan 5 08:20:37 CST 2002
==============================================================================
@@ -52,9 +52,13 @@ New Features
command.
* Improved performance of single, contiguous hyperslabs when reading or
writing.
+ * Changed internal error handling macros to reduce code size of library by
+ about 10%.
+ * Parallel HDF5 now works on HP-UX platforms.
+ * Can use just enable-threadsafe if the C compiler has builtin pthreads
+ support.
-
Bug Fixes since HDF5-1.4.2 Release
==================================
* Fixed a bug when reading chunked datasets where the edge of the dataset
@@ -74,6 +78,17 @@ Bug Fixes since HDF5-1.4.2 Release
properly if they caused close() to fail.
* Fixed a bug in internal B-tree code where a B-tree was not being copied
correctly.
+ * Fixed an off-by-one error in H5Sselect_valid when hyperslab selections
+ which would allow hyperslab selections which overlapped the edge of the
+ selection by one element as valid.
+ * Fixed the internal macros used to encode & decode file metadata, to avoid
+ an unaligned access warning on IA64 machines.
+ * Corrected behavior of H5Tinsert to not allow compound datatype fields to
+ be inserted past the end of the datatype.
+ * Retired the DPSS virtual file driver (--with-gridstorage configure
+ option).
+ * Fixed bug where variable-length datatypes for attributes was not working
+ correctly.
Documentation
@@ -158,8 +173,8 @@ Supported Configuration Features Summary
IRIX64_6.5 64 y y (2) y y n y y y
IRIX64_6.5 32 y y (2) n n n y y y
HPUX10.20 y n y n n y y y
- HPUX11.00 y n y n n y y y
- HPUX11 SysV y n y n n y y y
+ HPUX11.00 y y y n n y y y
+ HPUX11 SysV y y y n n y y y
DECOSF y n y n n y y y
T3E y y y y n n y y
SV1 y n y n n n y y
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 2a22809..72d4199 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.4.3-snap10 currently under development
+HDF5 version 1.4.3-snap11 currently under development
==============================================================================
diff --git a/src/H5public.h b/src/H5public.h
index 864c5d1..d85df43 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 "snap10" /* For pre-releases like snap0 */
+#define H5_VERS_SUBRELEASE "snap11" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.4.3-snap10" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.4.3-snap11" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)