Skip to content
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
28 changes: 28 additions & 0 deletions docs/change-log.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
# Change log


## 0.51.0 (2026-08-12)

### BREAKING CHANGE

- the loose plot / animate styling keywords are removed.
Pass the typed cleopatra groups instead — color_scale= becomes
color=ColorScaling(...), style= / hillshade= become
data_style=DataStyle(...), levels= becomes contour=Contour(...),
point_*= becomes points=PointOverlay(...), and cbar_*= / ticks_spacing=
become colorbar=ColorBar(...). Requires cleopatra >=0.30.0.
- DatasetCollection.create_cube is renamed to
from_dataset, and from_stac no longer accepts like/crs/resolution/bounds/
anchor keyword arguments — pass grid=Grid(...) instead.

### Feat

- **plot**: adopt cleopatra 0.30 typed render groups across all plot methods (#946)
- **spatial**: windowed crop(bbox=) that avoids full reads of huge/remote rasters (#966)
- **dataset**: generate a color table from a color ramp (#958)

### Refactor

- **collection**: consolidate the DatasetCollection constructor API (#951)

### Perf

- **collection**: stream to_netcdf instead of materialising the full cube (#961)

## 0.50.0 (2026-08-09)

### BREAKING CHANGE
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyramids-gis"
version = "0.50.0"
version = "0.51.0"
description = "GIS utility package"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [{ name = "Mostafa Farrag", email = "moah.farag@gmail.com" }]
Expand Down
Loading