diff --git a/CHANGELOG.md b/CHANGELOG.md index 257955d1..5ceede90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,40 +1,77 @@ -# v1.1.0 (2023-11-01) +## v1.2.0 (2023-12-18) + +### Bug fixes + +* Fix login redirect misbehaviors (#178, #58) + + +### Other + +* Add docs site (#201, #202, #203) +* Finish renaming -> Benefit Tool (#204) +* Apply Cosmo bootswatch theme, adjust layout (#209) +* Add mechanism to render Markdown in templates (#208) +* Modernization (#207) + + +## v1.1.0 (2023-11-01) + * Add description and links to the home page that will help users navigate the site -# v1.0.2 (2023-10-26) + +## v1.0.2 (2023-10-26) + * Bugfix: allow non-admin users to edit their profiles -# v1.0.1 (2023-10-16) + +## v1.0.1 (2023-10-16) + * Fix link on home page * Update VTA to Benefit tool in more places -# v1.0.0 (2023-10-15) + +## v1.0.0 (2023-10-15) + * Enable deleting response objects/cascading deletes -# v0.8.0 (2023-10-12) + +## v0.8.0 (2023-10-12) + * Enable deleting relationships -# v0.7.1 (2023-10-10) + +## v0.7.1 (2023-10-10) + * Bugfix: proxy redirect for new survey -# v0.7.0 (2023-10-09) + +## 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) + +## v0.6.0 (2023-10-06) + * Create citation/zenodo tag * Block new response objects being created by analyst * Show sankey previews on all relationship pages * Show full sankey preview on response home page -# v0.5.0 (2023-10-03) + +## v0.5.0 (2023-10-03) + * Bugfix relationship creation * Fix envarrs for google login/non dev environment -# v0.4.1 (2023-09-13) + +## v0.4.1 (2023-09-13) + * Bugfix environment variables -# v0.4.0 (2023-09-13) + +## v0.4.0 (2023-09-13) + * Stop using current_user and use true value for created_by on surveys page * Display version on webapp * Combine common response object database fields @@ -44,17 +81,18 @@ * Implement X-forwarded-proxy -# v0.3.0 (2023-08-17) +## v0.3.0 (2023-08-17) * Set up/improve all relationship interfaces * Populate societal benfit area reference data * Implement role dropdown on profile page -# v0.2.1 (2023-08-10) +## v0.2.1 (2023-08-10) * Temporary https fix -# v0.2.0 (2023-08-09) + +## v0.2.0 (2023-08-09) * Create user list view * Allow role changes by admin @@ -62,11 +100,12 @@ * Redirect to homepage after login * Alter views based on roles -# v0.1.1 (2023-07-26) + +## v0.1.1 (2023-07-26) * Set up "ad-hoc" HTTPS cert for dev -# v0.1.0 (2023-07-26) +## v0.1.0 (2023-07-26) * Initial release diff --git a/CITATION.cff b/CITATION.cff index 52ce2b2e..689280cd 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -10,8 +10,8 @@ type: "software" # https://github.com/zenodo/zenodo/issues/2515 license: "MIT" -version: 1.1.0 -date-released: "2023-11-01" +version: 1.2.0 +date-released: "2023-12-18" url: "https://github.com/nsidc/usaon-benefit-tool" authors: diff --git a/VERSION.env b/VERSION.env index a76f841c..26011d1d 100644 --- a/VERSION.env +++ b/VERSION.env @@ -1 +1 @@ -export USAON_BENEFIT_TOOL_VERSION="v1.1.0" +export USAON_BENEFIT_TOOL_VERSION="v1.2.0" diff --git a/pyproject.toml b/pyproject.toml index 4c6f6454..e69bb833 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 = "1.1.0" +version = "1.2.0" url = "git@github.com:nsidc/usaon-benefit-tool.git" authors = [ {name = "National Snow and Ice Data Center", email = "nsidc@nsidc.org"}, @@ -103,7 +103,7 @@ max-complexity = 8 inline-quotes = "double" [tool.bumpversion] -current_version = "1.1.0" +current_version = "1.2.0" commit = false tag = false diff --git a/usaon_benefit_tool/constants/version.py b/usaon_benefit_tool/constants/version.py index 2a3eb2f3..848258f9 100644 --- a/usaon_benefit_tool/constants/version.py +++ b/usaon_benefit_tool/constants/version.py @@ -1 +1 @@ -VERSION = "1.1.0" +VERSION = "1.2.0"