diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 43152837..b09ab059 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,15 @@ Changelog ######### +--------------------- +2022.3.0 - 2022-03-09 +--------------------- + +* core + * use batches when yielding completed futures from dask + * fix ``KeyError`` when removing futures from threads executor + + --------------------- 2022.2.2 - 2022-02-25 --------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 4af891f8..a549b4f8 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -9,7 +9,7 @@ __all__ = ["open", "count_tiles", "Mapchete", "MapcheteProcess", "ProcessInfo", "Timer"] -__version__ = "2022.2.2" +__version__ = "2022.3.0" logger = logging.getLogger(__name__)