-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1000582
commit 9f16f63
Showing
3 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## 0.2.0 (2023-08-15) | ||
|
||
### Feat | ||
|
||
- create initial release | ||
- implement relation consolidation | ||
- parse ways | ||
- implement filtering for tags | ||
- implement unpacked intermediate datastructures for easier filtering | ||
- implement way filtering# | ||
- basic parser working | ||
|
||
### Fix | ||
|
||
- run code quality checks only once, but type checking for different versions | ||
- configure publish on created release | ||
- configure releases | ||
- fix typo | ||
- fix status badges | ||
- fix status badges | ||
- make type hints compatible with python 3.10 | ||
- allow consolidation of empty groups | ||
- allow multipolygons referencing relations | ||
- fix filtering bug, where not all references were respected | ||
- fix typo in filter_groups | ||
|
||
### Refactor | ||
|
||
- move parsing logic to unpackes submodule | ||
- simplify element type handling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.0" | ||
__version__ = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "osm2gpd" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
description = "A parser that loads openstreetmaps native protobuf format into a sparse geopandas dataframe." | ||
authors = ["Christian <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -33,7 +33,7 @@ bandit = "^1.7.5" | |
pandas-stubs = "^2.0.3.230814" | ||
|
||
[tool.commitizen] | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
tag_format = "$version" | ||
version_files = [ | ||
"osm2gpd/__version__.py", | ||
|