forked from ethereum/evmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bumpversion.cfg
44 lines (34 loc) · 1.13 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
[bumpversion]
current_version = 7.2.0-alpha.0
tag = True
sign_tags = True
tag_message = EVMC {new_version}
commit = True
message = EVMC {new_version}
Bump version: {current_version} → {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<prerel>rc|alpha)\.(?P<prerelver>\d+))?
serialize =
{major}.{minor}.{patch}-{prerel}.{prerelver}
{major}.{minor}.{patch}
[bumpversion:part:prerel]
optional_value = rel
values =
alpha
rel
[bumpversion:file:CMakeLists.txt]
[bumpversion:file:include/evmc/evmc.h]
serialize = {major}
search = EVMC_ABI_VERSION = {current_version}
replace = EVMC_ABI_VERSION = {new_version}
[bumpversion:file:bindings/rust/evmc-sys/Cargo.toml]
search = version = \"{current_version}\"
[bumpversion:file:bindings/rust/evmc-vm/Cargo.toml]
search = version = \"{current_version}\"
[bumpversion:file:bindings/rust/evmc-declare/Cargo.toml]
search = version = \"{current_version}\"
[bumpversion:file:bindings/rust/evmc-declare-tests/Cargo.toml]
search = version = \"{current_version}\"
[bumpversion:file:docs/EVMC.md]
serialize = {major}
search = ABI version {current_version}
replace = ABI version {new_version}