Skip to content

Commit 0bcb36c

Browse files
authored
Release 0.3.0 (#120)
1 parent 6514bb0 commit 0bcb36c

File tree

3 files changed

+63
-63
lines changed

3 files changed

+63
-63
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.3.0 (2022-01-20)
4+
- **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)
5+
- 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)
6+
- 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)
7+
- Support 2022 version of Dask [@gjoseph92](https://github.com/gjoseph92)
8+
- Relax NumPy requirement, supporting any NumPy version supported by Dask [@gjoseph92](https://github.com/gjoseph92) [@scottyhq](https://github.com/scottyhq)
9+
- Require minimum Pillow version of 9.0, due to vulnerabilities reported in older versions (in features unused by stackstac)
10+
311
## 0.2.2 (2021-12-03)
412
- Support [pystac](https://github.com/stac-utils/pystac) ItemCollections [@TomAugspurger](https://github.com/TomAugspurger), [@scottyhq](https://github.com/scottyhq)
513
- Fix bug where repeated metadata values would be None [@gjoseph92](https://github.com/gjoseph92) [@scottyhq](https://github.com/scottyhq)

poetry.lock

Lines changed: 53 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ license = "MIT"
66
name = "stackstac"
77
readme = "README.md"
88
repository = "https://github.com/gjoseph92/stackstac"
9-
version = "0.2.2"
9+
version = "0.3.0"
1010

1111
[tool.poetry.dependencies]
1212
Bottleneck = {version = "^1.3.2", optional = true}
13-
Pillow = {version = "^8.1.2", optional = true}
13+
Pillow = {version = "^9.0.0", optional = true}
1414
Sphinx = {version = "^3.5.4", optional = true}
1515
aiohttp = {version = "^3.7.4", optional = true}
1616
cachetools = {version = "^4.2.2", optional = true}

0 commit comments

Comments
 (0)