diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cd632e8..d05e733c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.7.0 (2023-10-09) +* Bugfix: proxy redirect for login/logout +* Update DB for analyst to be default role + # v0.6.0 (2023-10-06) * Create citation/zenodo tag * Block new response objects being created by analyst diff --git a/CITATION.cff b/CITATION.cff index 1ad0d64c..350a42d5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -7,8 +7,8 @@ doi: "10.5281/zenodo.8403759" type: "software" license: ["MIT"] -version: 0.6.0 -date-released: "2023-10-06" +version: 0.7.0 +date-released: "2023-10-09" url: "https://github.com/nsidc/usaon-vta-survey" authors: diff --git a/VERSION.env b/VERSION.env index 78d9527c..247b6d12 100644 --- a/VERSION.env +++ b/VERSION.env @@ -1 +1 @@ -export USAON_VTA_SURVEY_VERSION="v0.6.0" +export USAON_VTA_SURVEY_VERSION="v0.7.0" diff --git a/pyproject.toml b/pyproject.toml index 76f47a92..0e3b68a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,7 +53,7 @@ max-complexity = 8 inline-quotes = "double" [tool.bumpversion] -current_version = "0.6.0" +current_version = "0.7.0" commit = false tag = false diff --git a/setup.py b/setup.py index 6fb062e5..7751fd4a 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='usaon_vta_survey', description="Gather data for US AON's Value Tree Analysis process", - version="0.6.0", + version="0.7.0", url="git@github.com:nsidc/usaon-vta-survey.git", author="National Snow and Ice Data Center", author_email="nsidc@nsidc.org", diff --git a/usaon_vta_survey/constants/version.py b/usaon_vta_survey/constants/version.py index 5a2867da..f4061091 100644 --- a/usaon_vta_survey/constants/version.py +++ b/usaon_vta_survey/constants/version.py @@ -1 +1 @@ -VERSION = "0.6.0" +VERSION = "0.7.0"