-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.bumpversion.cfg
More file actions
27 lines (22 loc) · 866 Bytes
/
.bumpversion.cfg
File metadata and controls
27 lines (22 loc) · 866 Bytes
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
[bumpversion]
current_version = 2.0.0
commit = True
commit_args = --no-verify
tag = True
tag_name = v{new_version}
message = Version bumpup: {current_version} → {new_version}
[bumpversion:file:rebar.config]
search = emqx_offline_message_plugin, "{current_version}"
replace = emqx_offline_message_plugin, "{new_version}"
[bumpversion:file:src/emqx_offline_message_plugin.app.src]
search = vsn, "{current_version}"
replace = vsn, "{new_version}"
[bumpversion:file (download link):README.md]
search = download/v{current_version}/
replace = download/v{new_version}/
[bumpversion:file (plugin name-vsn):README.md]
search = emqx_offline_message_plugin-{current_version}
replace = emqx_offline_message_plugin-{new_version}
[bumpversion:file:include/emqx_omp.hrl]
search = PLUGIN_RELEASE_VERSION, "{current_version}"
replace = PLUGIN_RELEASE_VERSION, "{new_version}"