diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d5ef12ef..543f2c6c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,21 @@ Changelog ######### +---------------------- +2021.10.1 - 2021-10-08 +---------------------- + +* core + + * ``mapchete.Executor``: make sure futures are removed after yield; track time spent to submit tasks + * ``mapchete.Executor``: remove task submission delay introduced for debugging + * ``mapchete.commands.convert``: set process metatiling so output tiles cannot be larger than process metatiles + * ``mapchete.commmands.convert``: fix overwrite flag on remote single GeoTIFFs + * ``mapchete.commands.cp``: add ``point`` and ``point-crs`` options + * don't write all STAC information into metadata.json + * don't initialize ``InputTile`` objects when processing baselevel tile + + ---------------------- 2021.10.0 - 2021-10-01 ---------------------- diff --git a/doc/source/apidoc/mapchete.cli.default.rst b/doc/source/apidoc/mapchete.cli.default.rst index 31ee79db..74b0f9ce 100644 --- a/doc/source/apidoc/mapchete.cli.default.rst +++ b/doc/source/apidoc/mapchete.cli.default.rst @@ -16,6 +16,7 @@ Submodules mapchete.cli.default.processes mapchete.cli.default.rm mapchete.cli.default.serve + mapchete.cli.default.stac Module contents --------------- diff --git a/doc/source/apidoc/mapchete.rst b/doc/source/apidoc/mapchete.rst index 588a578d..b6f6556b 100644 --- a/doc/source/apidoc/mapchete.rst +++ b/doc/source/apidoc/mapchete.rst @@ -24,6 +24,7 @@ Submodules mapchete.errors mapchete.index mapchete.log + mapchete.stac mapchete.tile mapchete.validate diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 26600653..bcb7814b 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -8,7 +8,7 @@ __all__ = ["open", "count_tiles", "Mapchete", "MapcheteProcess", "ProcessInfo", "Timer"] -__version__ = "2021.10.0" +__version__ = "2021.10.1" logger = logging.getLogger(__name__)