diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b426c21..7d206c83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - 2023-MM-DD ### Added -- `include_center` parameter to Neighbourhoods [#288](https://github.com/srai-lab/srai/issues/288) +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [0.3.0] - 2023-08-08 + +### Added +- `include_center` parameter to Neighbourhoods [#288](https://github.com/srai-lab/srai/issues/288) - `__version__` entry to library API. [#305](https://github.com/srai-lab/srai/issues/305) - `srai.h3` module with functions for translating list of h3 cells into shapely polygons and calculating local ij coordinates. @@ -27,17 +40,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `srai.utils.geometry` and `srai.utils.merge` moved to `srai.geometry` - `srai.utils.typing` moved to `srai._typing` -### Deprecated - -### Removed - ### Fixed - Improved simplification and buffering of polygons for Protomaps extracts [#309](https://github.com/srai-lab/srai/issues/309) - Eliminated some occasional errors in large scale executions of VoronoiRegionalizer [#313](https://github.com/srai-lab/srai/issues/313) -### Security - ## [0.2.0] - 2023-07-05 ### Added @@ -114,7 +121,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Intersection Joiner - Geoparquet Loader -[unreleased]: https://github.com/srai-lab/srai/compare/0.2.0...HEAD +[unreleased]: https://github.com/srai-lab/srai/compare/0.3.0...HEAD +[0.3.0]: https://github.com/srai-lab/srai/compare/0.2.0...0.3.0 [0.2.0]: https://github.com/srai-lab/srai/compare/0.1.1...0.2.0 [0.1.1]: https://github.com/srai-lab/srai/compare/0.0.1...0.1.1 [0.0.1]: https://github.com/srai-lab/srai/compare/687500b...0.0.1 diff --git a/CITATION.cff b/CITATION.cff index e26522fa..1cafb25a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,9 +14,9 @@ authors: given-names: "Szymon" orcid: "https://orcid.org/0000-0002-2047-1649" title: "SRAI: Spatial Representations for Artificial Intelligence" -version: 0.2.0 +version: 0.3.0 date-released: 2022-11-23 -url: "https://srai-lab.github.io/srai/0.0.1" +url: "https://srai-lab.github.io/srai" repository-code: "https://github.com/srai-lab/srai" licence: Apache-2.0 keywords: diff --git a/pyproject.toml b/pyproject.toml index 302763a6..9b551f19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "srai" -version = "0.2.0" +version = "0.3.0" description = "A set of python modules for geospatial machine learning and data mining" authors = [ { name = "SRAI Lab", email = "spatialrepresentationsforai@gmail.com" }, @@ -179,7 +179,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.2.0" +current_version = "0.3.0" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore: bump version {old_version} -> {new_version}" commit = true diff --git a/srai/__init__.py b/srai/__init__.py index 62d3d585..81a7eb7d 100644 --- a/srai/__init__.py +++ b/srai/__init__.py @@ -10,4 +10,4 @@ for complete documentation. """ -__version__ = "0.2.0" +__version__ = "0.3.0"