From 2c6ef177146ba5d67ad3201f98cca388875ef9dc Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Tue, 19 Dec 2023 19:58:22 -0700 Subject: [PATCH] Bumpversion -> 1.3.0 --- CHANGELOG.md | 2 +- CITATION.cff | 4 ++-- VERSION.env | 2 +- pyproject.toml | 16 ++++++++-------- usaon_benefit_tool/constants/version.py | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6baef9de..97c03928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## NEXT_VERSION +## v1.3.0 (2023-12-19) ### Survey page user experience enhancements diff --git a/CITATION.cff b/CITATION.cff index 689280cd..03b7539a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -10,8 +10,8 @@ type: "software" # https://github.com/zenodo/zenodo/issues/2515 license: "MIT" -version: 1.2.0 -date-released: "2023-12-18" +version: 1.3.0 +date-released: "2023-12-19" url: "https://github.com/nsidc/usaon-benefit-tool" authors: diff --git a/VERSION.env b/VERSION.env index 26011d1d..363a1d50 100644 --- a/VERSION.env +++ b/VERSION.env @@ -1 +1 @@ -export USAON_BENEFIT_TOOL_VERSION="v1.2.0" +export USAON_BENEFIT_TOOL_VERSION="v1.3.0" diff --git a/pyproject.toml b/pyproject.toml index e69bb833..a8ad912e 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.2.0" +version = "1.3.0" url = "git@github.com:nsidc/usaon-benefit-tool.git" authors = [ {name = "National Snow and Ice Data Center", email = "nsidc@nsidc.org"}, @@ -103,13 +103,13 @@ max-complexity = 8 inline-quotes = "double" [tool.bumpversion] -current_version = "1.2.0" +current_version = "1.3.0" commit = false tag = false [[tool.bumpversion.files]] filename = "usaon_benefit_tool/constants/version.py" -search = 'VERSION = "{current_version}"' +search = '^VERSION = "{current_version}"' replace = 'VERSION = "{new_version}"' [[tool.bumpversion.files]] @@ -119,20 +119,20 @@ replace = 'version = "{new_version}"' [[tool.bumpversion.files]] filename = "CITATION.cff" -search = 'version: {current_version}' +search = '^version: {current_version}' replace = 'version: {new_version}' [[tool.bumpversion.files]] filename = "CITATION.cff" -search = 'date-released: "\d{{4}}-\d{{2}}-\d{{2}}"' +search = '^date-released: "\d{{4}}-\d{{2}}-\d{{2}}"' replace = 'date-released: "{now:%Y-%m-%d}"' [[tool.bumpversion.files]] filename = "CHANGELOG.md" -search = "NEXT_VERSION" -replace = "v{new_version} ({now:%Y-%m-%d})" +search = "^## NEXT_VERSION" +replace = "## v{new_version} ({now:%Y-%m-%d})" [[tool.bumpversion.files]] filename = "VERSION.env" -search = 'export USAON_BENEFIT_TOOL_VERSION="v{current_version}"' +search = '^export USAON_BENEFIT_TOOL_VERSION="v{current_version}"' replace = 'export USAON_BENEFIT_TOOL_VERSION="v{new_version}"' diff --git a/usaon_benefit_tool/constants/version.py b/usaon_benefit_tool/constants/version.py index 848258f9..7b49cf1d 100644 --- a/usaon_benefit_tool/constants/version.py +++ b/usaon_benefit_tool/constants/version.py @@ -1 +1 @@ -VERSION = "1.2.0" +VERSION = "1.3.0"