summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.txt2
-rw-r--r--doc/html/ADGuide/RELEASE.txt14
-rw-r--r--release_docs/RELEASE.txt2
-rw-r--r--src/H5public.h4
4 files changed, 17 insertions, 5 deletions
diff --git a/README.txt b/README.txt
index 2dec445..0c5ee91 100644
--- a/README.txt
+++ b/README.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.5.25 currently under development
+HDF5 version 1.5.26 currently under development
Please refer to the release_docs/INSTALL file for installation instructions.
------------------------------------------------------------------------------
diff --git a/doc/html/ADGuide/RELEASE.txt b/doc/html/ADGuide/RELEASE.txt
index ccfdcdf..89363fb 100644
--- a/doc/html/ADGuide/RELEASE.txt
+++ b/doc/html/ADGuide/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.5.24 released on Sat Apr 6 11:34:52 CST 2002
+HDF5 version 1.5.25 released on Thu Apr 18 08:52:28 CDT 2002
================================================================================
@@ -35,6 +35,9 @@ Bug Fixes since HDF5-1.4.2
Library
-------
+ * Fixed bug where the data for several level deep nested compound &
+ variable-length datatypes used for datasets were getting corrupted when
+ written to the file. QAK - 2002/04/17
* Fixed bug where selection offset was being ignored for certain hyperslab
selections when optimized I/O was being performed. QAK - 2002/04/02
* Added serial multi-gigabyte file size test. "test/big -h" shows
@@ -156,6 +159,12 @@ Documentation
New Features
============
+ * Fill-value's behaviors for contiguous dataset have been redefined.
+ Basicly, dataset won't allocate space until it's necessary. Full details
+ are available at http://hdf.ncsa.uiuc.edu/RFC/Fill_Value, at this moment.
+ SLU - 2002/04/11
+ * Added new routine "H5Dfill" to fill a selection with a particular value
+ in memory. QAK - 2002/04/09
* A new query function H5Tget_member_index has been added for compound
and enumeration data types, to retrieve member's index by name.
SLU - 2002/04/05
@@ -252,6 +261,9 @@ 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.
+ * New API function H5Dset_extent. Modifies the dimensions of a dataset,
+ allows change to a lower dimension. The unused space in the file is freed.
+ PVN - 2002/03/31
Platforms Tested
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index e103899..9769320 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.5.25 currently under development
+HDF5 version 1.5.26 currently under development
================================================================================
diff --git a/src/H5public.h b/src/H5public.h
index ccdab2d..b66ab4f 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -66,10 +66,10 @@
/* Version numbers */
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 5 /* For minor interface/format changes */
-#define H5_VERS_RELEASE 25 /* For tweaks, bug-fixes, or development */
+#define H5_VERS_RELEASE 26 /* For tweaks, bug-fixes, or development */
#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.5.25" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.5.26" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)