Skip to content

Commit cf87152

Browse files
authored
Merge pull request #92 from roteiro-gis/ian/dev
Prepare 0.8.1 release
2 parents 773394c + ae77a5d commit cf87152

10 files changed

Lines changed: 35 additions & 29 deletions

File tree

CHANGELOG.md

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

3+
## 0.8.1 - 2026-08-11
4+
5+
- support COG writing on `wasm32-unknown-unknown` by staging blocks and raw tiles in memory while retaining temporary-file spooling on native targets
6+
- pad the GDAL COG ghost area to a 2-byte boundary so the first IFD is word-aligned and accepted by GDAL's COG validator across classic TIFF, BigTIFF, chunky, planar, one-shot, and tile-wise output
7+
- make the GDAL COG validator parity test detect the separately packaged `osgeo_utils` module before running
8+
39
## 0.8.0 - 2026-07-25
410

511
Breaking changes:

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exclude = ["fuzz"]
1313
resolver = "2"
1414

1515
[workspace.package]
16-
version = "0.8.0"
16+
version = "0.8.1"
1717
edition = "2021"
1818
rust-version = "1.85"
1919
license = "MIT OR Apache-2.0"

fuzz/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

geotiff-reader/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["geotiff", "cog", "raster", "gis", "read-only"]
1313
categories = ["science", "parser-implementations"]
1414

1515
[dependencies]
16-
geotiff-core = { version = "0.8.0", path = "../geotiff-core" }
16+
geotiff-core = { version = "0.8.1", path = "../geotiff-core" }
1717
ndarray = { workspace = true }
1818
thiserror = { workspace = true }
19-
tiff-reader = { version = "0.8.0", path = "../tiff-reader", optional = true }
19+
tiff-reader = { version = "0.8.1", path = "../tiff-reader", optional = true }
2020
lru = { version = "0.16.3", optional = true }
2121
parking_lot = { version = "0.12", optional = true }
2222

geotiff-writer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ keywords = ["geotiff", "cog", "encoder", "gis", "raster"]
1313
categories = ["science", "encoding"]
1414

1515
[dependencies]
16-
geotiff-core = { version = "0.8.0", path = "../geotiff-core" }
17-
tiff-writer = { version = "0.8.0", path = "../tiff-writer" }
18-
tiff-core = { version = "0.8.0", path = "../tiff-core" }
16+
geotiff-core = { version = "0.8.1", path = "../geotiff-core" }
17+
tiff-writer = { version = "0.8.1", path = "../tiff-writer" }
18+
tiff-core = { version = "0.8.1", path = "../tiff-core" }
1919
ndarray = { workspace = true }
2020
thiserror = { workspace = true }
2121
half = { workspace = true, optional = true }

integration-tests/geotiff-integration/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ rust-version.workspace = true
66
publish = false
77

88
[dependencies]
9-
geotiff-core = { version = "0.8.0", path = "../../geotiff-core" }
10-
geotiff-reader = { version = "0.8.0", path = "../../geotiff-reader" }
11-
geotiff-writer = { version = "0.8.0", path = "../../geotiff-writer" }
12-
tiff-core = { version = "0.8.0", path = "../../tiff-core" }
13-
tiff-reader = { version = "0.8.0", path = "../../tiff-reader" }
14-
tiff-writer = { version = "0.8.0", path = "../../tiff-writer" }
9+
geotiff-core = { version = "0.8.1", path = "../../geotiff-core" }
10+
geotiff-reader = { version = "0.8.1", path = "../../geotiff-reader" }
11+
geotiff-writer = { version = "0.8.1", path = "../../geotiff-writer" }
12+
tiff-core = { version = "0.8.1", path = "../../tiff-core" }
13+
tiff-reader = { version = "0.8.1", path = "../../tiff-reader" }
14+
tiff-writer = { version = "0.8.1", path = "../../tiff-writer" }
1515
ndarray = { workspace = true }
1616
half = { workspace = true, optional = true }
1717

integration-tests/tiff-integration/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ rust-version.workspace = true
66
publish = false
77

88
[dependencies]
9-
tiff-core = { version = "0.8.0", path = "../../tiff-core" }
10-
tiff-reader = { version = "0.8.0", path = "../../tiff-reader" }
11-
tiff-writer = { version = "0.8.0", path = "../../tiff-writer" }
9+
tiff-core = { version = "0.8.1", path = "../../tiff-core" }
10+
tiff-reader = { version = "0.8.1", path = "../../tiff-reader" }
11+
tiff-writer = { version = "0.8.1", path = "../../tiff-writer" }
1212
ndarray = { workspace = true }
1313
half = { workspace = true, optional = true }
1414

tiff-reader/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = ["tiff", "bigtiff", "decoder", "raster", "read-only"]
1313
categories = ["science", "parser-implementations"]
1414

1515
[dependencies]
16-
tiff-core = { version = "0.8.0", path = "../tiff-core" }
16+
tiff-core = { version = "0.8.1", path = "../tiff-core" }
1717
lerc-core = { workspace = true }
1818
lerc-reader = { workspace = true }
1919
ndarray = { workspace = true }

tiff-writer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = ["tiff", "bigtiff", "encoder", "raster", "gis"]
1313
categories = ["science", "encoding"]
1414

1515
[dependencies]
16-
tiff-core = { version = "0.8.0", path = "../tiff-core" }
16+
tiff-core = { version = "0.8.1", path = "../tiff-core" }
1717
lerc-core = { workspace = true }
1818
lerc-writer = { workspace = true }
1919
thiserror = { workspace = true }

0 commit comments

Comments
 (0)