From 09edd572eb60d0b62d589db33b88cbe3b4f28bba Mon Sep 17 00:00:00 2001 From: MAfarrag Date: Wed, 12 Aug 2026 17:14:22 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.50.0=20=E2=86=92=200.51.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/change-log.md | 28 ++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/docs/change-log.md b/docs/change-log.md index 81b3a0167d..eb9ce2b14e 100644 --- a/docs/change-log.md +++ b/docs/change-log.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index bcf5c95c91..b19beb8e0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" }]