Skip to content

Commit

Permalink
bump: version 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 15, 2023
1 parent 1000582 commit 9f16f63
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
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
2 changes: 1 addition & 1 deletion osm2gpd/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.2.0"
4 changes: 2 additions & 2 deletions pyproject.toml
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"
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 9f16f63

Please sign in to comment.