Skip to content

Commit

Permalink
Merge #414
Browse files Browse the repository at this point in the history
414: Prepare for `0.15` release r=jdroenner a=lnicola

- [x] I agree to follow the project's [code of conduct](https://github.com/georust/gdal/blob/master/CODE_OF_CONDUCT.md).
- [x] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users.
---



Co-authored-by: Laurențiu Nicola <[email protected]>
  • Loading branch information
bors[bot] and lnicola committed Jun 2, 2023
2 parents aa8fd8e + 4821f1c commit fdbb4f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ jobs:
run: cargo build
- name: Run tests
run: cargo test
- name: Build
- name: Build (--all-features)
run: cargo build --all-features
- name: Run tests
- name: Run tests (--all-features)
run: cargo test --all-features

ubuntu_lts:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
run: cargo build
- name: Run tests
run: cargo test
- name: Build
- name: Build (--all-features)
run: cargo build --all-features
- name: Run tests
- name: Run tests (--all-features)
run: cargo test --all-features
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changes

## Unreleased

## 0.15
- **Breaking**: `RasterBand::actual_block_size` now takes two `usize` offsets instead of `(isize, isize)`

- <https://github.com/georust/gdal/pull/413>
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "gdal"
description = "GDAL bindings for Rust"
license = "MIT"
version = "0.14.0"
version = "0.15.0"
authors = [
"Alex Morega <[email protected]>",
"Johannes Drönner <[email protected]>",
Expand All @@ -21,7 +21,7 @@ array = ["ndarray"]
thiserror = "1.0"
libc = "0.2"
geo-types = { version = "0.7.8" }
gdal-sys = { path = "gdal-sys", version = "^0.8" }
gdal-sys = { path = "gdal-sys", version = "^0.9" }
ndarray = { version = "0.15", optional = true }
chrono = { version = "0.4.23", default-features = false }
bitflags = "2.2"
Expand Down
2 changes: 1 addition & 1 deletion gdal-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "gdal-sys"
description = "Low level GDAL bindings for Rust"
license = "MIT"
version = "0.8.0"
version = "0.9.0"
repository = "https://github.com/georust/gdal"
authors = ["Johannes Drönner <[email protected]>"]
categories = ["science::geo", "api-bindings"]
Expand Down

0 comments on commit fdbb4f5

Please sign in to comment.