From a50f43b1d7b9842ff0ebc0a10794a616c35ba399 Mon Sep 17 00:00:00 2001 From: Gabe Joseph Date: Fri, 9 Aug 2024 22:30:50 -0600 Subject: [PATCH 1/3] update changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc4cb6c..a6d8f29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.5.1 (2024-08-09) +- Support NumPy 2.0 [@floriandeboissieu](https://github.com/floriandeboissieu) [@gjoseph92](https://github.com/gjoseph92) +- Require pandas 2.0, fix `'infer_datetime_format' is deprecated` warning, fix NaT values in time dimension [@gjoseph92](https://github.com/gjoseph92) [bastien-k](https://github.com/bastien-k) [clausmichele](https://github.com/clausmichele) [J6767](https://github.com/J6767) +- Fix `Unexpected shape` error with `errors_as_nodata` [@gjoseph92](https://github.com/gjoseph92) [fkroeber](https://github.com/fkroeber) +- Fix error when generating error message for multi-band rasters [yellowcap](https://github.com/yellowcap) +- Remove annoying `Skipping VRT` log statement [@gjoseph92](https://github.com/gjoseph92) + ## 0.5.0 (2023-09-19) - **Breaking change in specific scenarios:** `rescale=True` now uses STAC metadata from `raster:bands`, instead of metadata set per GeoTIFF [@RSchueder](https://github.com/RSchueder) - Fix black stripes when mosaicing (introduced in 0.4.4) [@gjoseph92](https://github.com/gjoseph92) [@lhcorralo](https://github.com/lhcorralo) From 155c2da20556f5e2d987d1e75e06677873768789 Mon Sep 17 00:00:00 2001 From: Gabe Joseph Date: Fri, 9 Aug 2024 22:31:29 -0600 Subject: [PATCH 2/3] bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dbe87e9..4b1c4e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ license = {text = "MIT"} name = "stackstac" readme = "README.md" requires-python = ">=3.8,<4.0" -version = "0.5.0" +version = "0.5.1" [project.urls] homepage = "https://stackstac.readthedocs.io/en/latest/index.html" From ed22d4693a7ee086c6765c22246865f61862a1dc Mon Sep 17 00:00:00 2001 From: Gabe Joseph Date: Fri, 9 Aug 2024 22:32:58 -0600 Subject: [PATCH 3/3] fixup! update changelog --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6d8f29..1927b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,9 @@ ## 0.5.1 (2024-08-09) - Support NumPy 2.0 [@floriandeboissieu](https://github.com/floriandeboissieu) [@gjoseph92](https://github.com/gjoseph92) -- Require pandas 2.0, fix `'infer_datetime_format' is deprecated` warning, fix NaT values in time dimension [@gjoseph92](https://github.com/gjoseph92) [bastien-k](https://github.com/bastien-k) [clausmichele](https://github.com/clausmichele) [J6767](https://github.com/J6767) -- Fix `Unexpected shape` error with `errors_as_nodata` [@gjoseph92](https://github.com/gjoseph92) [fkroeber](https://github.com/fkroeber) -- Fix error when generating error message for multi-band rasters [yellowcap](https://github.com/yellowcap) +- Require pandas 2.0, fix `'infer_datetime_format' is deprecated` warning, fix NaT values in time dimension [@gjoseph92](https://github.com/gjoseph92) [@bastien-k](https://github.com/bastien-k) [@clausmichele](https://github.com/clausmichele) [@J6767](https://github.com/J6767) +- Fix `Unexpected shape` error with `errors_as_nodata` [@gjoseph92](https://github.com/gjoseph92) [@fkroeber](https://github.com/fkroeber) +- Fix error when generating error message for multi-band rasters [@yellowcap](https://github.com/yellowcap) - Remove annoying `Skipping VRT` log statement [@gjoseph92](https://github.com/gjoseph92) ## 0.5.0 (2023-09-19)