Skip to content

Commit 51bddd0

Browse files
committed
Allow 1.14.1 (no API changes)
1 parent 28cb9ae commit 51bddd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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-21]
660660
vs.extend((0..=8).map(|v| Version::new(1, 10, v))); // 1.10.[0-8]
661661
vs.extend((0..=2).map(|v| Version::new(1, 12, v))); // 1.12.[0-2]
662-
vs.extend((0..=0).map(|v| Version::new(1, 14, v))); // 1.14.[0-0]
662+
vs.extend((0..=1).map(|v| Version::new(1, 14, v))); // 1.14.[0-1]
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)