diff --git a/docs/changelog.md b/docs/changelog.md index afbb46e35..a0aeb0e5e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,12 @@ +## v0.6.0 (2023-07-28) + +### Feat + +- Created network wrappers as a separate module +- Extracted logic to generate networks from different sources. +- **osm_network_wrapper.py**: Adde network wrapper to get a clean network from OSM source. +- Added dataclass to represent the Network configuration input data (ini file) + ## v0.5.1 (2023-07-26) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 677139665..a6eb6dd0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ra2ce" -version = "0.5.1" +version = "0.6.0" description = "Risk Assessment and Adaptation for Critical infrastructurE (RA2CE)." authors = ["Margreet van Marle "] maintainers = [ @@ -109,7 +109,7 @@ line_length = 88 name = "cz_conventional_commits" changelog_file = "docs/changelog.md" update_changelog_on_bump = true -version = "0.5.1" +version = "0.6.0" tag_format = "v$major.$minor.$patch" version_files= [ "ra2ce/__init__.py", diff --git a/ra2ce/__init__.py b/ra2ce/__init__.py index dd9b22ccc..906d362f7 100644 --- a/ra2ce/__init__.py +++ b/ra2ce/__init__.py @@ -1 +1 @@ -__version__ = "0.5.1" +__version__ = "0.6.0"