Skip to content

Commit

Permalink
Merge pull request #340 from nsidc/allow_obs_to_app_links
Browse files Browse the repository at this point in the history
Allow observing system to app links
  • Loading branch information
rmarow authored Oct 14, 2024
2 parents c3461d0 + 9e04b04 commit 8665772
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion VERSION.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export USAON_BENEFIT_TOOL_VERSION="v2.3.0"
export USAON_BENEFIT_TOOL_VERSION="v2.4.0"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]:nsidc/usaon-benefit-tool.git"
authors = [
{name = "National Snow and Ice Data Center", email = "[email protected]"},
Expand Down Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions usaon_benefit_tool/constants/sankey.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion usaon_benefit_tool/constants/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.3.0"
VERSION = "2.4.0"

0 comments on commit 8665772

Please sign in to comment.