From 191329f07f7b313ebb9e38a82644688f1d9b7598 Mon Sep 17 00:00:00 2001 From: Ardt Klapwijk Date: Tue, 7 Nov 2023 07:30:02 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.13.0=20=E2=86=92=200.14.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/changelog.md | 35 +++++++++++++++++++++++++++++++++++ koswat/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 38 insertions(+), 3 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 5e5aadac..3d1daf68 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,38 @@ +## Release-2023 (2023-11-07) + +### Feat + +- Added order_strategy submodule for determining reinforcement features across a dike traject based on default order +- Added new class to better handle / generate the location-reinforcement matrix + +### Fix + +- improve rounding +- improve rounding +- improve rounding +- show cost per km if no locations present +- add @property to total_cost +- add @property to total_cost +- add @property to total_cost +- test on presence of construction costs +- correct return type +- Added logic to plot new layer surfaces when they are either a `LineString` or a `MultiLineString` +- corrected berm width calculations (#114) +- corrected berm width calculations +- merge leftovers +- rename "raise" to "surtax" throughout KOSWAT +- rename "raise" to "surtax" throughout KOSWAT +- correct symbol name +- correct symbol name +- typo comment +- typo comment +- Added logic to avoid creating added / removed layers geometries when there were no modifications +- Added default values as math.nan for koswatscenario +- We now replace not-provided values from a KoswatScenario when calculating new reinforcements +- docu corrections +- docu corrections +- docu corrections + ## v0.13.0 (2023-01-31) ### Feat diff --git a/koswat/__init__.py b/koswat/__init__.py index f23a6b39..9e78220f 100644 --- a/koswat/__init__.py +++ b/koswat/__init__.py @@ -1 +1 @@ -__version__ = "0.13.0" +__version__ = "0.14.0" diff --git a/pyproject.toml b/pyproject.toml index 96e74784..38d62584 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "koswat" -version = "0.13.0" +version = "0.14.0" description = "Koswat, from the dutch combination of words `Kosts-Wat` (what are the costs). Analyzes all the possible dikes reinforcements based on a provided traject, with surrounding constructions, and what their related costs will be." authors = ["Carles S. Soriano PĂ©rez "] maintainers = ["Peter de Grave "] @@ -80,7 +80,7 @@ skip = [".git", ".github", ".env", ".venv", ".config", ".pytest_cache", ".scanne name = "cz_conventional_commits" changelog_file = "docs/changelog.md" update_changelog_on_bump = true -version = "0.13.0" +version = "0.14.0" tag_format = "v$major.$minor.$patch" version_files= [ "koswat/__init__.py",