Skip to content

Commit b5494a6

Browse files
committed
Bundle 1.14.2
1 parent 139027b commit b5494a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
library which is threadsafe.
2323
- Requesting a feature which is not compiled in the dynamic HDF5 library will
2424
now cause a compile time error.
25-
- The bundled version of HDF5 in `hdf5-src` is now 1.14.1.
25+
- The bundled version of HDF5 in `hdf5-src` is now 1.14.2.
2626

2727
### Fixed
2828

hdf5-src/ext/hdf5

Submodule hdf5 updated 1183 files

hdf5-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ impl Config {
659659
let mut vs: Vec<_> = (5..=21).map(|v| Version::new(1, 8, v)).collect(); // 1.8.[5-23]
660660
vs.extend((0..=8).map(|v| Version::new(1, 10, v))); // 1.10.[0-10]
661661
vs.extend((0..=2).map(|v| Version::new(1, 12, v))); // 1.12.[0-2]
662-
vs.extend((0..=1).map(|v| Version::new(1, 14, v))); // 1.14.[0-1]
662+
vs.extend((0..=2).map(|v| Version::new(1, 14, v))); // 1.14.[0-2]
663663
for v in vs.into_iter().filter(|&v| version >= v) {
664664
println!("cargo:rustc-cfg=feature=\"{}.{}.{}\"", v.major, v.minor, v.micro);
665665
println!("cargo:version_{}_{}_{}=1", v.major, v.minor, v.micro);

0 commit comments

Comments
 (0)