diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b7e7a9..e37728d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 0.3.0 - 2026-03-03 + +### What's Changed + +* feat: Add `.res` property to Overview by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/90 +* feat: Support for non-boundless tile reads by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/94 +* feat: `tile_count` attribute by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/97 +* feat: Add `GeoTIFF.colorinterp` by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/105 +* fix: Support reading a single-tile image by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/106 +* fix: Fix generated affine transform (by half pixel offset) when pixel is defined as `POINT` by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/107 +* feat: Expose band statistics by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/108 +* feat: Expose `scales` and `offsets` to match rasterio by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/110 +* feat: add `block_shapes` property by @gakarak in https://github.com/developmentseed/async-geotiff/pull/111 +* fix: Fix `Array.as_masked` for images with an internal mask by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/112 +* fix: Check alpha band in `Array.as_masked` by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/114 +* chore: Bump async-tiff dependency to 0.7 by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/117 +* feat: Add `shape` attribute to our `Array` class by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/118 +* docs: Update docs to describe request coalescing by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/119 + +### New Contributors + +* @gakarak made their first contribution in https://github.com/developmentseed/async-geotiff/pull/111 + +**Full Changelog**: https://github.com/developmentseed/async-geotiff/compare/v0.2.0...v0.3.0 + ## 0.2.0 - 2026-02-05 ### New Features diff --git a/pyproject.toml b/pyproject.toml index 39726d0..5a4c065 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "async-geotiff" -version = "0.3.0-beta.1" +version = "0.3.0" description = "Async GeoTIFF reader for Python" readme = "README.md" authors = [{ name = "Kyle Barron", email = "kyle@developmentseed.org" }] diff --git a/uv.lock b/uv.lock index 6eede94..e7cd10f 100644 --- a/uv.lock +++ b/uv.lock @@ -47,7 +47,7 @@ wheels = [ [[package]] name = "async-geotiff" -version = "0.3.0b1" +version = "0.3.0" source = { editable = "." } dependencies = [ { name = "affine" },