diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7b27aede..0fedb321 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ Changelog ######### +---------------------- +2023.12.2 - 2023-12-12 +---------------------- + +* core + + * add `processing.types.LazyTaskInfo` to avoid calling `Future.result()` unnecessarily (#608) + * do not keep futures around when submitting a task graph to enable dask to release finished tasks (#608) + * also apply `settings.MapcheteIOSettings` to `path.MPath.read_text()` (#609) + * add optional `DaskSpecs` to mapchte configuration schema (#609) + ---------------------- 2023.12.1 - 2023-12-07 diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 7f66fd3f..6512676d 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -21,7 +21,7 @@ "Executor", "MFuture", ] -__version__ = "2023.12.1" +__version__ = "2023.12.2" logger = logging.getLogger(__name__) logger.addHandler(logging.NullHandler())