-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bumpversion.cfg
30 lines (23 loc) · 960 Bytes
/
.bumpversion.cfg
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
[bumpversion]
current_version = 0.9.0
commit = True
tag = True
sign_tags = True
commit_args = -sS
message = bump: version {current_version} → {new_version}
[bumpversion:file:CHANGELOG.md]
search = [Unreleased](https://github.com/jshwi/constcheck/compare/v{current_version}...HEAD)
replace = [Unreleased](https://github.com/jshwi/constcheck/compare/v{new_version}...HEAD)
------------------------------------------------------------------------
[{new_version}](https://github.com/jshwi/constcheck/releases/tag/v{new_version}) - {now:%Y-%m-%d}
[bumpversion:file:docs/conf.py]
[bumpversion:file:constcheck/_version.py]
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:package.json]
search = "version": "{current_version}"
replace = "version": "{new_version}"
[bumpversion:file:package-lock.json]
search = "version": "{current_version}"
replace = "version": "{new_version}"