summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@volga.ad.hdfgroup.org>2018-05-30 21:56:31 (GMT)
committerElena Pourmal <epourmal@volga.ad.hdfgroup.org>2018-05-30 21:56:31 (GMT)
commit75fa629988e996d7a1684c9b067603c8456b1c97 (patch)
tree2bbd03c32078cd3121369156c239fcbab02db401
parented5ee65e5aca3906b425bad91c67dd68c9a66197 (diff)
downloadhdf5-75fa629988e996d7a1684c9b067603c8456b1c97.zip
hdf5-75fa629988e996d7a1684c9b067603c8456b1c97.tar.gz
hdf5-75fa629988e996d7a1684c9b067603c8456b1c97.tar.bz2
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.
-rw-r--r--release_docs/RELEASE.txt15
1 files changed, 7 insertions, 8 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index e6b0811..4473d51 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -160,8 +160,7 @@ New Features
Support for New Platforms, Languages, and Compilers
===================================================
-None
-
+ - Added support for Visual Studio 2017 w/ Intel Fortran 18 on Windows 10 x64.
Bug Fixes since HDF5-1.8.20
===========================
@@ -370,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.
@@ -380,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.