diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cba7ead8..4b829820 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,16 @@ Changelog ######### +---------------------- +2024.11.1 - 2024-11-25 +---------------------- + +* core + + * `settings.IORetrySettings`: add `aiohttp.ClientPayloadError` and `aiohttp.ClientResponseError` to retryable exceptions (#660) + * `io.raster.read.read_raster_window` and `io.vector.read.read_vector_window`: add traceback of original exception when raising `MapcheteIOError` (#660) + + ---------------------- 2024.11.0 - 2024-11-05 ---------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 9097f883..6e079470 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -38,7 +38,7 @@ "VectorInputGroup", "ZoomLevels", ] -__version__ = "2024.11.0" +__version__ = "2024.11.1" logger = logging.getLogger(__name__) logger.addHandler(logging.NullHandler())