diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index e787acb..7238cf3 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.2.0] - 2025-10-23 + +### What's Changed + +- Enable pytest-asyncio tests in CI by @weiji14 in https://github.com/developmentseed/async-tiff/pull/92 +- Raise FileNotFoundError instead of panic when opening missing files by @weiji14 in https://github.com/developmentseed/async-tiff/pull/93 +- Raise TypeError instead of panic on doing fetch_tile from striped TIFFs by @weiji14 in https://github.com/developmentseed/async-tiff/pull/99 +- Test opening single-channel OME-TIFF file by @weiji14 in https://github.com/developmentseed/async-tiff/pull/102 +- Remove broken symlink when building windows wheels by @maxrjones in https://github.com/developmentseed/async-tiff/pull/120 +- chore!: Bump minimum Python version to 3.10 by @kylebarron in https://github.com/developmentseed/async-tiff/pull/122 +- chore: Bump pyo3 to 0.26 by @kylebarron in https://github.com/developmentseed/async-tiff/pull/121 +- ci: Build abi3 wheels where possible by @kylebarron in https://github.com/developmentseed/async-tiff/pull/123 +- chore: Bump _obstore submodule for latest store creation types #125 + +### New Contributors + +- @feefladder made their first contribution in https://github.com/developmentseed/async-tiff/pull/71 +- @weiji14 made their first contribution in https://github.com/developmentseed/async-tiff/pull/92 + +**Full Changelog**: https://github.com/developmentseed/async-tiff/compare/py-v0.1.0...py-v0.1.1 + ## [0.1.0] - 2025-03-18 - Initial release. diff --git a/python/Cargo.lock b/python/Cargo.lock index 2f467f8..17fde9f 100644 --- a/python/Cargo.lock +++ b/python/Cargo.lock @@ -963,7 +963,7 @@ dependencies = [ [[package]] name = "py-async-tiff" -version = "0.1.0" +version = "0.2.0" dependencies = [ "async-tiff", "bytes", diff --git a/python/Cargo.toml b/python/Cargo.toml index c8948d9..9f5258a 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py-async-tiff" -version = "0.1.0" +version = "0.2.0" authors = ["Kyle Barron "] edition = "2021" # description = "Fast, memory-efficient 2D spatial indexes for Python."