Skip to content

Commit fdbb4f5

Browse files
bors[bot]lnicola
andauthored
Merge #414
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 <lnicola@dend.ro>
2 parents aa8fd8e + 4821f1c commit fdbb4f5

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
run: cargo build
6161
- name: Run tests
6262
run: cargo test
63-
- name: Build
63+
- name: Build (--all-features)
6464
run: cargo build --all-features
65-
- name: Run tests
65+
- name: Run tests (--all-features)
6666
run: cargo test --all-features
6767

6868
ubuntu_lts:
@@ -103,7 +103,7 @@ jobs:
103103
run: cargo build
104104
- name: Run tests
105105
run: cargo test
106-
- name: Build
106+
- name: Build (--all-features)
107107
run: cargo build --all-features
108-
- name: Run tests
108+
- name: Run tests (--all-features)
109109
run: cargo test --all-features

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changes
22

33
## Unreleased
4+
5+
## 0.15
46
- **Breaking**: `RasterBand::actual_block_size` now takes two `usize` offsets instead of `(isize, isize)`
57

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gdal"
33
description = "GDAL bindings for Rust"
44
license = "MIT"
5-
version = "0.14.0"
5+
version = "0.15.0"
66
authors = [
77
"Alex Morega <alex@grep.ro>",
88
"Johannes Drönner <droenner@informatik.uni-marburg.de>",
@@ -21,7 +21,7 @@ array = ["ndarray"]
2121
thiserror = "1.0"
2222
libc = "0.2"
2323
geo-types = { version = "0.7.8" }
24-
gdal-sys = { path = "gdal-sys", version = "^0.8" }
24+
gdal-sys = { path = "gdal-sys", version = "^0.9" }
2525
ndarray = { version = "0.15", optional = true }
2626
chrono = { version = "0.4.23", default-features = false }
2727
bitflags = "2.2"

gdal-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gdal-sys"
33
description = "Low level GDAL bindings for Rust"
44
license = "MIT"
5-
version = "0.8.0"
5+
version = "0.9.0"
66
repository = "https://github.com/georust/gdal"
77
authors = ["Johannes Drönner <droenner@informatik.uni-marburg.de>"]
88
categories = ["science::geo", "api-bindings"]

0 commit comments

Comments
 (0)