-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.age.toml
36 lines (26 loc) · 940 Bytes
/
.age.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
35
36
current_version = "2025.1.21"
[[files]]
path = "pyproject.toml"
search = "version = \"{{current_version}}\""
replace = "version = \"{{new_version}}\""
[[files]]
path = "pyproject.toml"
search = "release = \"{{current_version}}\""
replace = "release = \"{{new_version}}\""
[[files]]
path = "pyproject.toml"
search = "html_title = \"atsphinx-toybox v{{current_version}}\""
replace = "html_title = \"atsphinx-toybox v{{new_version}}\""
[[files]]
path = "src/atsphinx/toybox/__init__.py"
search = "__version__ = \"{{current_version}}\""
replace = "__version__ = \"{{new_version}}\""
[[files]]
path = ".github/release-body.md"
search = "Release atsphinx-toybox v{{ current_version }}"
replace = "Release atsphinx-toybox v{{ new_version }}"
[[files]]
path = ".github/release-body.md"
regex = true
search = "Changelog is .+"
replace = "Changelog is https://github.com/atsphinx/toybox/compere/v{{ current_version }}...v{{ new_version }}"