diff options
-rw-r--r-- | README.txt | 2 | ||||
-rw-r--r-- | doc/html/ADGuide/RELEASE.txt | 41 | ||||
-rw-r--r-- | release_docs/RELEASE.txt | 2 | ||||
-rw-r--r-- | src/H5public.h | 4 |
4 files changed, 36 insertions, 13 deletions
@@ -1,4 +1,4 @@ -HDF5 version 1.4.3-post1 currently under development +HDF5 version 1.4.4-snap1 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 b40c5b1..fbea729 100644 --- a/doc/html/ADGuide/RELEASE.txt +++ b/doc/html/ADGuide/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.4.3-post0 released on Sat Mar 23 06:57:14 CST 2002 +HDF5 version 1.4.4-snap0 released on Thu Apr 18 09:05:17 CDT 2002 ============================================================================== @@ -40,14 +40,21 @@ New Features o Library ========= - o General - --------- - - o APIs - ------ - - o Performance - ------------- + o General + --------- + * Fill-value's forward-compatibility with 1.5 was added. SLU - + 2002/04/11 + * Added serial multi-gigabyte file size test. "test/big -h" shows + the help page. AKC - 2002/03/29 + * 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 + + o APIs + ------ + + o Performance + ------------- o Parallel Library ================== @@ -55,6 +62,7 @@ New Features o Tools ======= + o Support for new platforms and languages ========================================= @@ -62,6 +70,21 @@ New Features Bug Fixes since HDF5-1.4.3 Release ================================== + * 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 + * Fixed limitation in h5dumper with object names which reached over 1024 + characters in length. We can now handle arbitrarily larger sizes for + object names. BW - 2002/03/29 + * Fixed bug where variable-length string type doesn't behave as + string. SLU - 2002/03/28 + * Fixed bug in H5Gget_objinfo() which was not setting the 'fileno' + of the H5G_stat_t struct. QAK - 2002/03/27 + * Fixed data corruption bug in hyperslab routines when contiguous + hyperslab that spans entire dimension and is larger than type + conversion buffer is attempted to be read. QAK - 2002/03/26 Documentation diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 3c619aa..62743dc 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.4.3-post1 currently under development +HDF5 version 1.4.4-snap1 currently under development ============================================================================== diff --git a/src/H5public.h b/src/H5public.h index 4bed286..df7dc8c 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 4 /* 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.4-snap0" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.4.4-snap1" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) |