diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e5b26098..a5618596 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ Changelog ######### +---------------------- +2022.12.0 - 2022-12-16 +---------------------- + +* core + * extend capabilities of `mapchete.io.raster.ReferencedRaster` (#513) + * allow executing remote mapchete files (#514) + * adapt to `Shapely 2.0` (#515) + +* packaging + * replace `setuptools` with `hatch` (#516) + + ---------------------- 2022.11.2 - 2022-11-30 ---------------------- @@ -10,7 +23,7 @@ Changelog * use group prefix for preprocessing tasks (#512) * CLI - * pass on `max_workers`` to dask executor (#508) + * pass on `max_workers` to dask executor (#508) ---------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 4bdb8467..f9aad6c8 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -20,7 +20,7 @@ "SkippedFuture", "Job", ] -__version__ = "2022.11.2" +__version__ = "2022.12.0" logger = logging.getLogger(__name__) logger.addHandler(logging.NullHandler())