We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b290190 commit 45171cfCopy full SHA for 45171cf
1 file changed
pyproject.toml
@@ -81,11 +81,8 @@ tag = true
81
sign_tags = false
82
tag_name = "v{new_version}"
83
tag_message = "Bump version: {current_version} → {new_version}"
84
-current_version = "0.2.0"
85
-parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
86
-serialize = [
87
- "{major}.{minor}.{patch}"
88
-]
+current_version = "1.1.0"
+
89
90
[[tool.bumpversion.files]]
91
filename = "pyproject.toml"
@@ -94,5 +91,11 @@ replace = 'version = "{new_version}"'
94
95
92
96
93
filename = "CITATION.cff"
97
-search = "version: {current_version}"
98
-replace = "version: {new_version}"
+search = """
+title: "My Research Software"
+version: {current_version}
+"""
+replace = """
99
100
+version: {new_version}
101
0 commit comments