summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2018-05-31 14:43:37 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2018-05-31 14:43:37 (GMT)
commit4e5354e1d409779b58c0dc130b46f3386e78b415 (patch)
tree2bbd03c32078cd3121369156c239fcbab02db401
parent1ef3cf804db20931b266503ffca37de98eb3544c (diff)
parent75fa629988e996d7a1684c9b067603c8456b1c97 (diff)
downloadhdf5-4e5354e1d409779b58c0dc130b46f3386e78b415.zip
hdf5-4e5354e1d409779b58c0dc130b46f3386e78b415.tar.gz
hdf5-4e5354e1d409779b58c0dc130b46f3386e78b415.tar.bz2
Merge pull request #1089 in HDFFV/hdf5 from ~EPOURMAL/hdf5_ep:hdf5_1_8_21 to hdf5_1_8_21
* commit '75fa629988e996d7a1684c9b067603c8456b1c97': Modified a section for newly supported systems and compilers (vs. 1.8.20 release); Brought edits for tools bug fixes from 1.10.2 RELEASE.txt as we agreed with Allen. It is my test under Larry's guidance.
-rw-r--r--release_docs/RELEASE.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 314a249..4473d51 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -160,7 +160,7 @@ New Features
Support for New Platforms, Languages, and Compilers
===================================================
-
+ - Added support for Visual Studio 2017 w/ Intel Fortran 18 on Windows 10 x64.
Bug Fixes since HDF5-1.8.20
===========================
@@ -369,9 +369,10 @@ Bug Fixes since HDF5-1.8.20
- h5repack
- h5repack failed to handle more then 9 chars for int conversion.
+ h5repack failed to handle command line parameters for customer filters.
- User defined filter parameter conversions would fail for integers
+ User defined filter parameter conversions would fail whenintegers were
+ represented on the command line with character string
larger then 9 characters. Increased local variable array for storing
the current command line parameter to prevent buffer overflows.
@@ -379,14 +380,13 @@ Bug Fixes since HDF5-1.8.20
- h5diff
- h5diff seg-faulted if comparing VL strings against fixed strings.
+ h5diff seg faulted if comparing VL strings against fixed strings.
Reworked solution for HDFFV-8625 and HDFFV-8639. Implemented the check
for string objects of same type in the diff_can_type function by
- adding an if(tclass1 == H5T_STRING) block. This if block moves the
+ adding an if(tclass1 == H5T_STRING) block. This "if block" moves the
same check that was added for attributes to this function, which is
- used by all object types. This function also handles complex type
- structures.
+ used by all object types. This function handles complex type structures.
Also added a new test file in h5diffgenttest for testing this issue
and removed the temporary files used in the test scripts.