Skip to content

Commit

Permalink
Bugfix v2.0.1: fix new assessment form
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Mar 22, 2024
1 parent d4c19e5 commit 79908bf
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v2.0.1 (2024-03-21)

* Bugfix: Remove obsolete template import.


## v2.0.0 (2024-03-21)

* Revamp data model
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"

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.0.0"
export USAON_BENEFIT_TOOL_VERSION="v2.0.1"
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.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"},
Expand Down Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions usaon_benefit_tool/constants/templating.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FORM_MODAL_ID = "form-modal"
FORM_MODAL_HX_TARGET_ID = f"{FORM_MODAL_ID}-hx-target"
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.0.0"
VERSION = "2.0.1"
1 change: 0 additions & 1 deletion usaon_benefit_tool/templates/assessments.html
Original file line number Diff line number Diff line change
@@ -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 %}


Expand Down

0 comments on commit 79908bf

Please sign in to comment.