diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fffc2891..e629ec99 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,26 @@ Changelog ######### +--------------------- +2024.7.0 - 2024-07-24 +--------------------- + +* core + + * add `mapchete.geometry` module (move relevant geometry operations from `io.vector` to `geometry` module) (#630) + * fixed bug where configuration was not properly passed if an element had only one subitem (#635) + * fix memray deprecation (#637) + +* packaging + + * fix pystac version limit (#633) + +* CI + + * remove coveralls and use GitHub actions to report on test coverage + * remove support for Python 3.8 and 3.9 + * add tests for Python 3.12 and `ubuntu-latest` + --------------------- 2024.6.0 - 2024-06-03 --------------------- diff --git a/mapchete/__init__.py b/mapchete/__init__.py index e9e7fed6..6fef6a90 100644 --- a/mapchete/__init__.py +++ b/mapchete/__init__.py @@ -32,7 +32,7 @@ "VectorInput", "VectorInputGroup", ] -__version__ = "2024.6.0" +__version__ = "2024.7.0" logger = logging.getLogger(__name__) logger.addHandler(logging.NullHandler())