Skip to content

Commit 5ce92ff

Browse files
committed
Replace 1.13 with 1.14
1 parent 42fcdee commit 5ce92ff

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
fail-fast: false
133133
matrix:
134134
include:
135-
- {os: ubuntu, rust: stable, h5version: 1_13}
135+
- {os: ubuntu, rust: stable, h5version: 1_14}
136136
- {os: windows, rust: stable-msvc, h5version: 1_12}
137137
- {os: windows, rust: stable-gnu, h5version: 1_10}
138138
- {os: macos, rust: stable, h5version: 1_10}
@@ -194,7 +194,7 @@ jobs:
194194
fail-fast: false
195195
matrix:
196196
rust: [stable]
197-
version: ["1.8", "1.10", "1.12", "1.13"]
197+
version: ["1.8", "1.10", "1.12", "1.14"]
198198
steps:
199199
- name: Checkout repository
200200
uses: actions/checkout@v2
@@ -218,9 +218,9 @@ jobs:
218218
DL_PATH=hdf5-1.12.0-Std-win10_64-vs16.zip
219219
echo "MSI_PATH=hdf\\HDF5-1.12.0-win64.msi" >> $GITHUB_ENV
220220
else
221-
VERSION=1.13.2
222-
DL_PATH=windows/hdf5-1.13.2-Std-win10_64-vs16.zip
223-
echo "MSI_PATH=hdf\\HDF5-1.13.2-win64.msi" >> $GITHUB_ENV
221+
VERSION=1.14.0
222+
DL_PATH=windows/hdf5-1.14.0-Std-win10_64-vs16.zip
223+
echo "MSI_PATH=hdf\\HDF5-1.14.0-win64.msi" >> $GITHUB_ENV
224224
fi
225225
BASE_URL=https://support.hdfgroup.org/ftp/HDF5/releases
226226
echo "DL_URL=$BASE_URL/hdf5-${{matrix.version}}/hdf5-$VERSION/bin/$DL_PATH" >> $GITHUB_ENV

.gitmodules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[submodule "hdf5-src/ext/1_13_0"]
2-
path = hdf5-src/ext/1_13
3-
url = https://github.com/HDFGroup/hdf5.git
41
[submodule "hdf5-src/ext/1_12_0"]
52
path = hdf5-src/ext/1_12
63
url = https://github.com/HDFGroup/hdf5.git
74
[submodule "hdf5-src/ext/1_10_0"]
85
path = hdf5-src/ext/1_10
96
url = https://github.com/HDFGroup/hdf5.git
7+
[submodule "hdf5-src/ext/1_14"]
8+
path = hdf5-src/ext/1_14
9+
url = https://github.com/HDFGroup/hdf5.git

hdf5-src/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ deprecated = []
4242
threadsafe = []
4343
1_10 = []
4444
1_12 = []
45-
1_13 = []
45+
1_14 = []
4646

4747
[dependencies]
4848
libz-sys = { version = "1.0.25", features = ["static", "libc"], optional = true, default-features=false }

hdf5-src/build.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ fn feature_enabled(feature: &str) -> bool {
66

77
fn main() {
88
println!("cargo:rerun-if-changed=build.rs");
9-
let mut cfg = if feature_enabled("1_13") {
10-
cmake::Config::new("ext/1_13")
9+
let mut cfg = if feature_enabled("1_14") {
10+
cmake::Config::new("ext/1_14")
1111
} else if feature_enabled("1_12") {
1212
cmake::Config::new("ext/1_12")
1313
} else if feature_enabled("1_10") {
@@ -31,6 +31,7 @@ fn main() {
3131
] {
3232
cfg.define(option, "OFF");
3333
}
34+
cfg.define("DEFAULT_API_VERSION", "none");
3435

3536
// disable these by default, can be enabled via features
3637
for option in &[

hdf5-src/ext/1_13

Lines changed: 0 additions & 1 deletion
This file was deleted.

hdf5-src/ext/1_14

Submodule 1_14 added at 0553fb7

0 commit comments

Comments
 (0)