Skip to content

Commit

Permalink
Bumpversion -> 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Dec 20, 2023
1 parent 3c05f5b commit 2c6ef17
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## NEXT_VERSION
## v1.3.0 (2023-12-19)

### Survey page user experience enhancements

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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="v1.2.0"
export USAON_BENEFIT_TOOL_VERSION="v1.3.0"
16 changes: 8 additions & 8 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 = "1.2.0"
version = "1.3.0"
url = "[email protected]:nsidc/usaon-benefit-tool.git"
authors = [
{name = "National Snow and Ice Data Center", email = "[email protected]"},
Expand Down Expand Up @@ -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]]
Expand All @@ -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}"'
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 = "1.2.0"
VERSION = "1.3.0"

0 comments on commit 2c6ef17

Please sign in to comment.