Skip to content

Commit

Permalink
Add pre-built bindings for GDAL 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed Nov 15, 2023
1 parent 00e41d6 commit b0c7eaf
Show file tree
Hide file tree
Showing 5 changed files with 14,296 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
strategy:
matrix:
version:
- 3.8.0
- 3.7.3
- 3.6.4
- 3.5.3
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

- Added pre-built bindings for GDAL 3.8

- <https://github.com/georust/gdal/pull/466>

- Added `{Display|FromStr} for ResampleAlg` and `ResampleAlg::iter`.

- <https://github.com/georust/gdal/pull/462>
Expand Down
1 change: 1 addition & 0 deletions bors.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
status = [
"ci gdal-3.8.0",
"ci gdal-3.7.3",
"ci gdal-3.6.4",
"ci gdal-3.5.3",
Expand Down
2 changes: 1 addition & 1 deletion gdal-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fn main() {
// Hardcode a prebuilt binding version while generating docs.
// Otherwise docs.rs will explode due to not actually having libgdal installed.
if std::env::var("DOCS_RS").is_ok() {
let version = Version::parse("3.7.0").expect("invalid version for docs.rs");
let version = Version::parse("3.8.0").expect("invalid version for docs.rs");
println!(
"cargo:rustc-cfg=gdal_sys_{}_{}_{}",
version.major, version.minor, version.patch
Expand Down
Loading

0 comments on commit b0c7eaf

Please sign in to comment.