diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4b829820..33e644c4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,15 @@ Changelog ######### +---------------------- +2024.11.1 - 2024-11-25 +---------------------- + +* core + + * `io._misc.copy()`: fix masking of `aiohttp.ClientResponseError` where some tool raises a generic Exception instead of the original `aiohttp.ClientResponseError` (#661) + + ---------------------- 2024.11.1 - 2024-11-25 ---------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index 6e079470..8eac02d0 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -38,7 +38,7 @@ "VectorInputGroup", "ZoomLevels", ] -__version__ = "2024.11.1" +__version__ = "2024.12.0" logger = logging.getLogger(__name__) logger.addHandler(logging.NullHandler())