diff --git a/CHANGELOG.md b/CHANGELOG.md index dbf04a2..8bb2d64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.5.1 - 2026-05-18 + +* feat: Add new `Store` protocol defined in this package by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/161 +* docs: Don't document private base classes by @kylebarron in https://github.com/developmentseed/async-geotiff/pull/162 + +**Full Changelog**: https://github.com/developmentseed/async-geotiff/compare/v0.5.0...v0.5.1 + ## 0.5.0 - 2026-05-08 ### New Features diff --git a/README.md b/README.md index fc7edc0..760ab28 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,21 @@ # async-geotiff +[![PyPI][pypi_badge]][pypi_link] +[![Conda Version][conda_version_badge]][conda_version] + + + +[pypi_badge]: https://badge.fury.io/py/async-geotiff.svg +[pypi_link]: https://pypi.org/project/async-geotiff/ +[conda_version_badge]: https://img.shields.io/conda/vn/conda-forge/async-geotiff.svg +[conda_version]: https://anaconda.org/conda-forge/async-geotiff +[pypi-img]: https://static.pepy.tech/badge/async-geotiff +[pypi-link]: https://pypi.org/project/async-geotiff/ + Fast, async GeoTIFF and [Cloud-Optimized GeoTIFF][cogeo] (COG) reader for Python, wrapping the Rust-based [Async-TIFF][async-tiff] library. [**Documentation website.**][docs]
-[Release post for v0.1][release_01_post] +[Introduction blog post][release_01_post] [release_01_post]: https://developmentseed.org/async-geotiff/latest/blog/2026/02/03/introducing-async-geotiff/ diff --git a/pyproject.toml b/pyproject.toml index 67995be..c8e9540 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "async-geotiff" -version = "0.5.0" +version = "0.5.1" 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 914d397..731c960 100644 --- a/uv.lock +++ b/uv.lock @@ -47,7 +47,7 @@ wheels = [ [[package]] name = "async-geotiff" -version = "0.4.0" +version = "0.5.1" source = { editable = "." } dependencies = [ { name = "affine" },