diff --git a/CHANGELOG.md b/CHANGELOG.md index e11e10e3..5acae37c 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.3] - 2025-01-01 + ### Fixed - Removed GTFS feed validation for `gtfs-kit` versions >= `10.0.0` @@ -335,7 +337,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.2...HEAD +[Unreleased]: https://github.com/kraina-ai/srai/compare/0.8.3...HEAD + +[0.8.3]: https://github.com/kraina-ai/srai/compare/0.8.2...0.8.3 [0.8.2]: https://github.com/kraina-ai/srai/compare/0.8.1...0.8.2 diff --git a/CITATION.cff b/CITATION.cff index 51a6194f..2bfe2d3e 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -30,7 +30,7 @@ keywords: - geospatial - spatial-analysis license: Apache-2.0 -version: 0.8.2 +version: 0.8.3 date-released: '2022-11-23' preferred-citation: type: conference-paper diff --git a/pyproject.toml b/pyproject.toml index 6ac181ce..98fc0454 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "srai" -version = "0.8.2" +version = "0.8.3" 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.2" +current_version = "0.8.3" 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 12f77f6e..498fe61a 100644 --- a/srai/__init__.py +++ b/srai/__init__.py @@ -10,4 +10,4 @@ for complete documentation. """ -__version__ = "0.8.2" +__version__ = "0.8.3"