diff --git a/docs/changelog.md b/docs/changelog.md index 6a38c4784..7f9e64a44 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,20 @@ # Changelog +## v0.7.0 (2023-12-05) + +### Feat + +- Example notebook is updated +- notebooks are added +- origin closest destination now can be ran without hazard infor in the network and analysis configs + +### Fix + +- docu typos +- `find_route_ods` now returns a geodataframe without duplicate entries or origin_nodes with multiple names +- Changed output suffix. +- save_shp is updated to the output export shapefile + ## v0.6.0 (2023-07-28) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 839c7f095..8f65886a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ra2ce" -version = "0.6.0" +version = "0.7.0" description = "Risk Assessment and Adaptation for Critical infrastructurE (RA2CE)." authors = ["Margreet van Marle "] maintainers = [ @@ -124,7 +124,7 @@ line_length = 88 name = "cz_conventional_commits" changelog_file = "docs/changelog.md" update_changelog_on_bump = true -version = "0.6.0" +version = "0.7.0" tag_format = "v$major.$minor.$patch" version_files= [ "ra2ce/__init__.py", diff --git a/ra2ce/__init__.py b/ra2ce/__init__.py index 906d362f7..49e0fc1e0 100644 --- a/ra2ce/__init__.py +++ b/ra2ce/__init__.py @@ -1 +1 @@ -__version__ = "0.6.0" +__version__ = "0.7.0"