From 969e58082d0be17f003c1fafc06096c76d7bbe61 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Thu, 23 Oct 2025 13:43:19 -0400 Subject: [PATCH 1/2] chore: Bump python binding version to 0.2.0 --- python/CHANGELOG.md | 20 ++++++++++++++++++++ python/Cargo.lock | 2 +- python/Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index e787acb..63f7bee 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -1,5 +1,25 @@ # 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 + +### 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 18b47ad..01d67e4 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 d5f2fd3..b8e188c 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." From e24824aba7d138d85e0c9069fd2b3e34bd94a2e5 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Thu, 23 Oct 2025 13:51:46 -0400 Subject: [PATCH 2/2] add changelog --- python/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 63f7bee..7238cf3 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -12,6 +12,7 @@ - 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