diff --git a/.gitignore b/.gitignore index 06c9e218..c16053e1 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,5 @@ venv/ htmlcov/ .pytest* .env -dask-worker-space/ \ No newline at end of file +dask-worker-space/ +.vscode/ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e233cd9d..5873dbb4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,16 @@ Changelog ######### +---------------------- +2021.11.3 - 2021-11-23 +---------------------- + +* core + * expose ``chunksize`` parameter of dask executor to ``execute`` and ``convert`` commands. + * clean up ``DaskExecutor.as_completed()`` code & log messages + * ``index``: use ``tiles_exist()`` row generators to speed up index creation + + ---------------------- 2021.11.2 - 2021-11-16 ---------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 3e273f73..7b6f9ba1 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -8,7 +8,7 @@ __all__ = ["open", "count_tiles", "Mapchete", "MapcheteProcess", "ProcessInfo", "Timer"] -__version__ = "2021.11.2" +__version__ = "2021.11.3" logger = logging.getLogger(__name__)