diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e241d0a..0b593a03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.2] - 2023-12-28 + ### Added - CI release via GitHub Actions @@ -226,7 +228,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Intersection Joiner - Geoparquet Loader -[Unreleased]: https://github.com/kraina-ai/srai/compare/0.6.1...HEAD +[Unreleased]: https://github.com/kraina-ai/srai/compare/0.6.2...HEAD + +[0.6.2]: https://github.com/kraina-ai/srai/compare/0.6.1...0.6.2 [0.6.1]: https://github.com/kraina-ai/srai/compare/0.6.0...0.6.1 diff --git a/CITATION.cff b/CITATION.cff index ddce1aa8..198641c1 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -30,7 +30,7 @@ keywords: - geospatial - spatial-analysis license: Apache-2.0 -version: 0.6.1 +version: 0.6.2 date-released: '2022-11-23' preferred-citation: type: conference-paper diff --git a/pyproject.toml b/pyproject.toml index a0036c75..0823c7c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "srai" -version = "0.6.1" +version = "0.6.2" description = "A set of python modules for geospatial machine learning and data mining" authors = [ { name = "Piotr Gramacki", email = "pgramacki@kraina.ai" }, @@ -183,7 +183,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.6.1" +current_version = "0.6.2" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}" commit = true diff --git a/srai/__init__.py b/srai/__init__.py index 797b7a5a..624c1198 100644 --- a/srai/__init__.py +++ b/srai/__init__.py @@ -10,4 +10,4 @@ for complete documentation. """ -__version__ = "0.6.1" +__version__ = "0.6.2"