summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2012-10-12 00:30:25 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2012-10-12 00:30:25 (GMT)
commitc15fb68505520d0a1fb9d9e01d65f3a159d514a4 (patch)
tree9c7733d68780b5954f81a0feb0f346df3d37b882
parentdb7314fa769b8bed226d0f32148f1a391361f6a2 (diff)
downloadhdf5-c15fb68505520d0a1fb9d9e01d65f3a159d514a4.zip
hdf5-c15fb68505520d0a1fb9d9e01d65f3a159d514a4.tar.gz
hdf5-c15fb68505520d0a1fb9d9e01d65f3a159d514a4.tar.bz2
[svn-r22886] Added bug fixes and enhancements since the last release.
-rw-r--r--release_docs/RELEASE.txt25
1 files changed, 24 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index aa56444..4b31d27 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -75,6 +75,8 @@ New Features
- Add H5Pget_mpio_no_collective_cause() function that retrive reasons
why the collective I/O was broken during read/write IO access.
(JKM - 2012/08/30 HDFFV-8143)
+
+ - Added H5Pget_mpio_actual_io_mode_f (MSB - 2012/09/27)
Tools
-----
@@ -183,7 +185,21 @@ Bug Fixes since HDF5-1.8.9
F90 API
-------
- - None
+
+ - Fixed a typo in return value of the nh5dread_f_c function ( was 1
+ instead of 0 on success); fixed the return value to make it consistent
+ with other Fortran functions; cleaned the code from debug statements.
+ (EIP - 2012/06/23)
+
+ - Fixed problem writing/reading control characters to a dataset; writing
+ a string containing: alerts, backspace, carriage_return, form_feed,
+ horizontal_tab, vertical_tab, new_line is now tested and working.
+ (MSB - 2012/09/01)
+
+ - Corrected the integer type of H5S_UNLIMITED_F to HSIZE_T (MSB - 2012/09/01)
+
+ - Corrected the number of continuation lines in the src files
+ to be less than 32 lines for F95 compliance. (MSB - 2012/10/01)
C++ API
------
@@ -191,6 +207,13 @@ Bug Fixes since HDF5-1.8.9
High-Level APIs:
------
+
+ - Fixed problem with H5TBdelete_record destroying all data following the deletion
+ of a row. (MSB- 2012/7/26)
+
+ - Fixed H5LTget_attribute_string not closing an object identifier when an
+ error occurs. (MSB- 2012/7/21)
+
- Corrected return type of H5TBAget_fill from herr_t to htri_t to reflect
that a return value of 1 indicates that a fill value is present, 0
indicates a fill value is not present and <0 indicates an error.