Skip to content

Commit

Permalink
release: 0.3.0 (#323)
Browse files Browse the repository at this point in the history
* chore: bump version 0.2.0 -> 0.3.0

* chore: modified changelog

* chore: change citation url
  • Loading branch information
RaczeQ authored Aug 7, 2023
1 parent 325c556 commit 170e8f9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
24 changes: 16 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" },
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion srai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
for complete documentation.
"""

__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit 170e8f9

Please sign in to comment.