From 5434a21fc5b99e409154abf72c82baf46596883d Mon Sep 17 00:00:00 2001 From: Joachim Ungar Date: Thu, 28 Apr 2022 13:26:22 +0200 Subject: [PATCH] bump version; update changelog; fix imports --- CHANGELOG.rst | 12 ++++++++++++ mapchete/__init__.py | 15 +++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ab2540cc..4cb382bd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,18 @@ Changelog ######### +--------------------- +2022.4.1 - 2022-04-28 +--------------------- + +* core + + * explicitly check whether futures were cancelled + * `mapchete stac create-item`: also expand custom zoom levels + * don't throw exception if STAC file cannot be written or updated + * add `mapchete stac create-protoype-files` command to write STACTA prototype datasets required by GDAL + + --------------------- 2022.4.0 - 2022-04-01 --------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index a1fe9b40..73eb9bfb 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -8,8 +8,19 @@ from mapchete._timer import Timer -__all__ = ["open", "count_tiles", "Mapchete", "MapcheteProcess", "ProcessInfo", "Timer"] -__version__ = "2022.4.0" +__all__ = [ + "open", + "count_tiles", + "Mapchete", + "MapcheteProcess", + "ProcessInfo", + "Timer", + "Executor", + "FakeFuture", + "SkippedFuture", + "Job", +] +__version__ = "2022.4.1" logger = logging.getLogger(__name__)