diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bd49c9a..68df092e 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.8.2] - 2024-12-30 + ### Fixed - Changed polygon creation in spherical voronoi algorithm to avoid rounding error on vertices @@ -329,7 +331,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.8.1...HEAD +[Unreleased]: https://github.com/kraina-ai/srai/compare/0.8.2...HEAD + +[0.8.2]: https://github.com/kraina-ai/srai/compare/0.8.1...0.8.2 [0.8.1]: https://github.com/kraina-ai/srai/compare/0.8.0...0.8.1 diff --git a/CITATION.cff b/CITATION.cff index 6bcb4397..51a6194f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -30,7 +30,7 @@ keywords: - geospatial - spatial-analysis license: Apache-2.0 -version: 0.8.1 +version: 0.8.2 date-released: '2022-11-23' preferred-citation: type: conference-paper diff --git a/pyproject.toml b/pyproject.toml index 6b0c5207..39a0d201 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "srai" -version = "0.8.1" +version = "0.8.2" description = "A set of python modules for geospatial machine learning and data mining" authors = [ { name = "Piotr Gramacki", email = "pgramacki@kraina.ai" }, @@ -195,7 +195,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.8.1" +current_version = "0.8.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 7e3bf421..12f77f6e 100644 --- a/srai/__init__.py +++ b/srai/__init__.py @@ -10,4 +10,4 @@ for complete documentation. """ -__version__ = "0.8.1" +__version__ = "0.8.2"