Skip to content

Commit

Permalink
Bundle 1.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mulimoen committed Sep 7, 2023
1 parent 139027b commit b5494a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
library which is threadsafe.
- Requesting a feature which is not compiled in the dynamic HDF5 library will
now cause a compile time error.
- The bundled version of HDF5 in `hdf5-src` is now 1.14.1.
- The bundled version of HDF5 in `hdf5-src` is now 1.14.2.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion hdf5-src/ext/hdf5
Submodule hdf5 updated 1183 files
2 changes: 1 addition & 1 deletion hdf5-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ impl Config {
let mut vs: Vec<_> = (5..=21).map(|v| Version::new(1, 8, v)).collect(); // 1.8.[5-23]
vs.extend((0..=8).map(|v| Version::new(1, 10, v))); // 1.10.[0-10]
vs.extend((0..=2).map(|v| Version::new(1, 12, v))); // 1.12.[0-2]
vs.extend((0..=1).map(|v| Version::new(1, 14, v))); // 1.14.[0-1]
vs.extend((0..=2).map(|v| Version::new(1, 14, v))); // 1.14.[0-2]
for v in vs.into_iter().filter(|&v| version >= v) {
println!("cargo:rustc-cfg=feature=\"{}.{}.{}\"", v.major, v.minor, v.micro);
println!("cargo:version_{}_{}_{}=1", v.major, v.minor, v.micro);
Expand Down

0 comments on commit b5494a6

Please sign in to comment.