diff --git a/CHANGELOG.md b/CHANGELOG.md index db774cde..568b7084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v2.0.1 (2024-03-21) + +* Bugfix: Remove obsolete template import. + + ## v2.0.0 (2024-03-21) * Revamp data model diff --git a/CITATION.cff b/CITATION.cff index bc980308..ba418e16 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -10,7 +10,7 @@ type: "software" # https://github.com/zenodo/zenodo/issues/2515 license: "MIT" -version: 2.0.0 +version: 2.0.1 date-released: "2024-03-21" url: "https://github.com/nsidc/usaon-benefit-tool" diff --git a/VERSION.env b/VERSION.env index abe29273..2c865c77 100644 --- a/VERSION.env +++ b/VERSION.env @@ -1 +1 @@ -export USAON_BENEFIT_TOOL_VERSION="v2.0.0" +export USAON_BENEFIT_TOOL_VERSION="v2.0.1" diff --git a/pyproject.toml b/pyproject.toml index 4683e672..e4a8b1c4 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.0.0" +version = "2.0.1" url = "git@github.com:nsidc/usaon-benefit-tool.git" authors = [ {name = "National Snow and Ice Data Center", email = "nsidc@nsidc.org"}, @@ -105,7 +105,7 @@ max-complexity = 8 inline-quotes = "double" [tool.bumpversion] -current_version = "2.0.0" +current_version = "2.0.1" commit = false tag = false diff --git a/usaon_benefit_tool/constants/templating.py b/usaon_benefit_tool/constants/templating.py new file mode 100644 index 00000000..a868d6fe --- /dev/null +++ b/usaon_benefit_tool/constants/templating.py @@ -0,0 +1,2 @@ +FORM_MODAL_ID = "form-modal" +FORM_MODAL_HX_TARGET_ID = f"{FORM_MODAL_ID}-hx-target" diff --git a/usaon_benefit_tool/constants/version.py b/usaon_benefit_tool/constants/version.py index 21014090..b46c2e74 100644 --- a/usaon_benefit_tool/constants/version.py +++ b/usaon_benefit_tool/constants/version.py @@ -1 +1 @@ -VERSION = "2.0.0" +VERSION = "2.0.1" diff --git a/usaon_benefit_tool/templates/assessments.html b/usaon_benefit_tool/templates/assessments.html index 9f352b71..f52a86e2 100644 --- a/usaon_benefit_tool/templates/assessments.html +++ b/usaon_benefit_tool/templates/assessments.html @@ -1,7 +1,6 @@ {% extends 'base.html' %} {% from 'bootstrap5/utils.html' import render_icon %} {% from 'macros/badges/private.j2' import private_badge %} -{% from 'macros/forms/new_assessment.j2' import new_assessment_form %} {% from 'macros/forms/form_fields.j2' import render_form_fields %}