Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.3.0 #120

Merged
merged 1 commit into from
Jan 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.3.0 (2022-01-20)
- **Breaking change:** `fill_value=None` is no longer supported. You must always specify a `fill_value` (default is still NaN); it can no longer be inferred from the GeoTIFF files. [@gjoseph92](https://github.com/gjoseph92)
- Respect `fill_value` for array chunks that don't overlap with any Asset, instead of always using NaN [@gjoseph92](https://github.com/gjoseph92) [@TomAugspurger](https://github.com/TomAugspurger)
- Fix bugs with `stackstac.show` when the path to your notebook file had the word `notebook`, `lab`, or `voila` in it [@robintw](https://github.com/robintw)
- Support 2022 version of Dask [@gjoseph92](https://github.com/gjoseph92)
- Relax NumPy requirement, supporting any NumPy version supported by Dask [@gjoseph92](https://github.com/gjoseph92) [@scottyhq](https://github.com/scottyhq)
- Require minimum Pillow version of 9.0, due to vulnerabilities reported in older versions (in features unused by stackstac)

## 0.2.2 (2021-12-03)
- Support [pystac](https://github.com/stac-utils/pystac) ItemCollections [@TomAugspurger](https://github.com/TomAugspurger), [@scottyhq](https://github.com/scottyhq)
- Fix bug where repeated metadata values would be None [@gjoseph92](https://github.com/gjoseph92) [@scottyhq](https://github.com/scottyhq)
Expand Down
114 changes: 53 additions & 61 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ license = "MIT"
name = "stackstac"
readme = "README.md"
repository = "https://github.com/gjoseph92/stackstac"
version = "0.2.2"
version = "0.3.0"

[tool.poetry.dependencies]
Bottleneck = {version = "^1.3.2", optional = true}
Pillow = {version = "^8.1.2", optional = true}
Pillow = {version = "^9.0.0", optional = true}
Sphinx = {version = "^3.5.4", optional = true}
aiohttp = {version = "^3.7.4", optional = true}
cachetools = {version = "^4.2.2", optional = true}
Expand Down