Skip to content

Commit e3ffa48

Browse files
committed
Add to changelog
1 parent 6b67126 commit e3ffa48

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@
99
- Support field renaming via `#[hdf5(rename = "new_name")]` helper attribute.
1010
- Add a `ByteReader` which implements `std::io::{Read, Seek}` for 1D `u8`
1111
datasets. Usage via `Dataset::as_byte_reader()`.
12+
- Add `chunk_visit` to visit all chunks in a dataset.
1213

1314
### Changed
1415

1516
- The `H5Type` derive macro now uses `proc-macro-error` to emit error messages.
1617
- MSRV is now `1.64.0` and Rust edition has now been bumped to 2021.
18+
- Types in ChunkInfo has been changed to match HDF5
1719

1820
### Fixed
1921

hdf5/src/hl/dataset.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl Dataset {
118118
}
119119

120120
/// Visit all chunks
121-
#[cfg(feature = "1.13.0")]
121+
#[cfg(feature = "1.14.0")]
122122
pub fn chunks_visit<F>(&self, callback: F) -> Result<()>
123123
where
124124
F: for<'a> FnMut(crate::dataset::ChunkInfoRef<'a>) -> i32,

0 commit comments

Comments
 (0)