diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d3013514..3668a738 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ Changelog ######### +--------------------- +2023.6.2 - 2023-06-12 +--------------------- + +* core + + * don't let MPath.makedirs() decide whether to only create parent directories or not (#546) + +* testing + + * ProcessFixture now processes all preprocessing tasks using SequentialExecutor (#546) + + --------------------- 2023.6.1 - 2023-06-06 --------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index c6bb4957..ce02ec5c 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -19,7 +19,7 @@ "SkippedFuture", "Job", ] -__version__ = "2023.6.1" +__version__ = "2023.6.2" logger = logging.getLogger(__name__) logger.addHandler(logging.NullHandler())