-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bumpversion.toml
34 lines (28 loc) · 955 Bytes
/
.bumpversion.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.bumpversion]
current_version = "0.16.9"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "src/murfey/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "Helm/Chart.yaml"
search = 'version: {current_version}'
replace = 'version: {new_version}'
[[tool.bumpversion.files]]
filename = "Helm/charts/murfey-instrument-server-clem/Chart.yaml"
search = 'version: {current_version}'
replace = 'version: {new_version}'
[[tool.bumpversion.files]]
filename = "Helm/charts/murfey-rsync/Chart.yaml"
search = 'version: {current_version}'
replace = 'version: {new_version}'
[[tool.bumpversion.files]]
filename = "Helm/charts/murfey-server/Chart.yaml"
search = 'version: {current_version}'
replace = 'version: {new_version}'