diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c04b88b0..43152837 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ Changelog ######### + +--------------------- +2022.2.2 - 2022-02-25 +--------------------- + +* core + * avoid infinite recursion when retrying reprojection with clipped geometry + * attach missing dask client loop to `distributed.as_completed` call + * fixed infinite future yield when using `DaskExecutor.as_completed()` + * expose `--dask-no-task-graph` flag to `execute` and `convert` commands + --------------------- 2022.2.1 - 2022-02-23 --------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 8d852046..4af891f8 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -9,7 +9,7 @@ __all__ = ["open", "count_tiles", "Mapchete", "MapcheteProcess", "ProcessInfo", "Timer"] -__version__ = "2022.2.1" +__version__ = "2022.2.2" logger = logging.getLogger(__name__)