From 6cff22742f51c67a725b648e3a525ab173b898a4 Mon Sep 17 00:00:00 2001 From: Robyn Marowitz Date: Fri, 11 Oct 2024 15:16:43 -0600 Subject: [PATCH 1/2] allow new link between observation system and application --- usaon_benefit_tool/constants/sankey.py | 1 + 1 file changed, 1 insertion(+) diff --git a/usaon_benefit_tool/constants/sankey.py b/usaon_benefit_tool/constants/sankey.py index f408c9d2..ac35c306 100644 --- a/usaon_benefit_tool/constants/sankey.py +++ b/usaon_benefit_tool/constants/sankey.py @@ -8,6 +8,7 @@ ALLOWED_LINKS: Final[list[tuple[NodeType, NodeType]]] = [ (NodeType.OBSERVING_SYSTEM, NodeType.OBSERVING_SYSTEM), (NodeType.OBSERVING_SYSTEM, NodeType.DATA_PRODUCT), + (NodeType.OBSERVING_SYSTEM, NodeType.APPLICATION), (NodeType.DATA_PRODUCT, NodeType.DATA_PRODUCT), (NodeType.DATA_PRODUCT, NodeType.APPLICATION), (NodeType.APPLICATION, NodeType.APPLICATION), From 9e04b04aa92b9df9492a29ab8d7c6a08d9a4e4dd Mon Sep 17 00:00:00 2001 From: Robyn Marowitz Date: Fri, 11 Oct 2024 15:22:46 -0600 Subject: [PATCH 2/2] Bumpversion -> 2.4.0 --- CHANGELOG.md | 4 ++++ CITATION.cff | 4 ++-- VERSION.env | 2 +- pyproject.toml | 4 ++-- usaon_benefit_tool/constants/version.py | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf9a2023..860593c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.4.0 (2024-10-11) + +* Allow linking between observation system and application nodes + ## v2.3.0 (2024-10-02) * Add sort functionality to assessments and object library pages diff --git a/CITATION.cff b/CITATION.cff index c2bdfe5b..e224b2b3 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -10,8 +10,8 @@ type: "software" # https://github.com/zenodo/zenodo/issues/2515 license: "MIT" -version: 2.3.0 -date-released: "2024-10-02" +version: 2.4.0 +date-released: "2024-10-11" url: "https://github.com/nsidc/usaon-benefit-tool" authors: diff --git a/VERSION.env b/VERSION.env index d73ad286..1cb40520 100644 --- a/VERSION.env +++ b/VERSION.env @@ -1 +1 @@ -export USAON_BENEFIT_TOOL_VERSION="v2.3.0" +export USAON_BENEFIT_TOOL_VERSION="v2.4.0" diff --git a/pyproject.toml b/pyproject.toml index 5ceec5ea..775ac3dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "usaon_benefit_tool" description = "Gather data for US AON's Value Tree Analysis (Benefit Tool) process" -version = "2.3.0" +version = "2.4.0" url = "git@github.com:nsidc/usaon-benefit-tool.git" authors = [ {name = "National Snow and Ice Data Center", email = "nsidc@nsidc.org"}, @@ -106,7 +106,7 @@ max-complexity = 8 inline-quotes = "double" [tool.bumpversion] -current_version = "2.3.0" +current_version = "2.4.0" commit = false tag = false diff --git a/usaon_benefit_tool/constants/version.py b/usaon_benefit_tool/constants/version.py index 707faadc..02c476a6 100644 --- a/usaon_benefit_tool/constants/version.py +++ b/usaon_benefit_tool/constants/version.py @@ -1 +1 @@ -VERSION = "2.3.0" +VERSION = "2.4.0"