Skip to content

Commit 4fdfdf1

Browse files
committed
Add to changelog
1 parent 45da8d0 commit 4fdfdf1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
are now generic over size only: `FixedAscii<N>` and `FixedUnicode<N>`.
7272
- The version of `hdf5` built in `hdf5-src` has been updated from `1.10.6` to `1.10.7`.
7373
- The `zlib` dependency is no longer included with `default-features`.
74+
- `hdf5` no longer calls `H5close` automatically on program exit.
7475

7576
## 0.7.1
7677

src/globals.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ use crate::internal_prelude::*;
1919
lazy_static! {
2020
static ref LIBRARY_INIT: () = {
2121
h5lock!({
22+
// Ensure hdf5 does not invalidate handles which might
23+
// still be live on other threads on program exit
2224
::hdf5_sys::h5::H5dont_atexit();
2325
::hdf5_sys::h5::H5open();
2426
});

0 commit comments

Comments
 (0)