Skip to content

Commit

Permalink
Add pre-built bindings for GDAL 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed May 12, 2024
1 parent b06de82 commit 6518a5c
Show file tree
Hide file tree
Showing 4 changed files with 14,657 additions and 2 deletions.
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.9.0
- 3.8.5
- 3.7.3
- 3.6.4
Expand Down
5 changes: 4 additions & 1 deletion 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.9

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

- Added `Rasterband::fill`
- <https://github.com/georust/gdal/pull/528>

Expand Down Expand Up @@ -79,7 +83,6 @@

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


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

- <https://github.com/georust/gdal/pull/462>
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.8.0").expect("invalid version for docs.rs");
let version = Version::parse("3.9.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 6518a5c

Please sign in to comment.