Skip to content

Commit

Permalink
Release 0.3.0 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjoseph92 committed Jan 20, 2022
1 parent 6514bb0 commit 0bcb36c
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 63 deletions.
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

0 comments on commit 0bcb36c

Please sign in to comment.