Skip to content

Commit

Permalink
Merge pull request #466 from lnicola/gdal-3-8
Browse files Browse the repository at this point in the history
Add pre-built bindings for GDAL 3.8.0
  • Loading branch information
lnicola authored Nov 16, 2023
2 parents 00e41d6 + b0c7eaf commit f180427
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 f180427

Please sign in to comment.