Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release notes #817

Merged
merged 38 commits into from
Jul 1, 2021
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
8119b9b
Hdf5 1 12 doxygen version correction (#658)
byrnHDF May 19, 2021
0a71283
Attempt format uniformity in RELEASE.txt.
lrknox May 19, 2021
c1acf63
BUG: DataSet assignment operator is missing (#503)
Leengit May 19, 2021
53e1139
Add H5Dchunk_iter method for iterating over chunks (#6)
gauteh May 19, 2021
d739e46
Set initial doxygen version for H5Dchunk_iter().
lrknox May 20, 2021
5cee957
Revert "Set initial doxygen version for H5Dchunk_iter()."
lrknox May 20, 2021
7226b9f
Revert "Add H5Dchunk_iter method for iterating over chunks (#6)"
lrknox May 20, 2021
1391b2b
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox May 20, 2021
5df14b4
Add flushrefresh errors with check-passthrough-vol to known problems in
lrknox May 21, 2021
bd0cc9a
Minor RELEASE.txt updates.
lrknox May 21, 2021
74cd6bf
Hdf5 1 12 Remove version from pkgcfg file names (#672)
byrnHDF May 21, 2021
8f95373
More minor updates.
lrknox May 22, 2021
ac5baab
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox May 24, 2021
e16cd51
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox May 25, 2021
1447be2
Update configure disablhing memory alloc sanity check for release.
lrknox May 25, 2021
bfab963
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox Jun 1, 2021
f8ad50f
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox Jun 7, 2021
4fd2f88
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox Jun 11, 2021
2d1a0c9
Set version to 1.12.1.
lrknox Jun 11, 2021
27030cc
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox Jun 15, 2021
89d1c04
Hdf5 1 12 fix warnings files (#755)
byrnHDF Jun 15, 2021
947bb19
Fixes an array issue flagged by PGI in a C++ test (#763)
derobins Jun 17, 2021
ad11274
Hdf5 1 12 Fix cmake configure path (#761)
byrnHDF Jun 17, 2021
7f6d384
Restore initials to release notes.
lrknox Jun 18, 2021
3d086b5
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox Jun 18, 2021
828d806
Copy release notes from 1.10.7 RELEASE.txt ffor fixes also in 1.12.1.
lrknox Jun 18, 2021
6bcff5d
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into h…
lrknox Jun 18, 2021
c129b2b
emove 2 entries added in PR #777.
lrknox Jun 21, 2021
e776b46
Add RELEASE.txt entry for h5repack bug fix (#792)
jhendersonHDF Jun 23, 2021
6cca955
Hdf5 1 12 Fix tools test (#795)
byrnHDF Jun 24, 2021
93e2f01
Add 2 release notes.
lrknox Jun 24, 2021
05ecb43
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into r…
lrknox Jun 25, 2021
feabaaf
Hdf5 1 12 Release Note (#785)
byrnHDF Jun 23, 2021
84dc24a
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into r…
lrknox Jun 25, 2021
b281e0c
Hdf5 1 12 Update missing release note info. (#777)
byrnHDF Jun 22, 2021
b9c93df
Merge branch 'hdf5_1_12_1' of https://github.com/HDFGroup/hdf5 into r…
lrknox Jul 1, 2021
3264129
RELEASE.txt corrections.
lrknox Jul 1, 2021
356549d
Update url for Libaec license to appear in binary README.txt file.
lrknox Jul 1, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes an array issue flagged by PGI in a C++ test (#763)
derobins authored and lrknox committed Jun 17, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 947bb19caa3c6d29418ddec10ccf01d24fd03838
7 changes: 5 additions & 2 deletions c++/test/ttypes.cpp
Original file line number Diff line number Diff line change
@@ -726,8 +726,11 @@ test_named()

// It should be possible to define an attribute for the named type
Attribute attr1 = itype.createAttribute("attr1", PredType::NATIVE_UCHAR, space);
for (i = 0; i < ds_size[0] * ds_size[1]; i++)
attr_data[0][i] = (int)i; /*tricky*/
for (hsize_t i = 0; i < ds_size[0]; i++) {
for (hsize_t j = 0; j < ds_size[1]; j++) {
attr_data[i][j] = static_cast<unsigned>(i * ds_size[1] + j);
}
}
attr1.write(PredType::NATIVE_UINT, attr_data);
attr1.close();