File tree Expand file tree Collapse file tree 4 files changed +21
-18
lines changed Expand file tree Collapse file tree 4 files changed +21
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ [tool .bumpversion ]
2
+ current_version = " 0.55.1"
3
+ commit = true
4
+ message = " Update version {current_version} -> {new_version}"
5
+
6
+ [[tool .bumpversion .files ]]
7
+ filename = " ibm_platform_services/version.py"
8
+ search = " __version__ = '{current_version}'"
9
+ replace = " __version__ = '{new_version}'"
10
+
11
+ [[tool .bumpversion .files ]]
12
+ filename = " setup.py"
13
+ search = " __version__ = '{current_version}'"
14
+ replace = " __version__ = '{new_version}'"
15
+
16
+ [[tool .bumpversion .files ]]
17
+ filename = " README.md"
18
+ search = " {current_version}"
19
+ replace = " {new_version}"
Original file line number Diff line number Diff line change 8
8
[
9
9
"@semantic-release/exec",
10
10
{
11
- "prepareCmd": "bump2version --allow-dirty --current-version ${lastRelease.version} --new-version ${nextRelease.version} patch "
11
+ "prepareCmd": "bump-my-version bump --allow-dirty --current-version ${lastRelease.version} --new-version ${nextRelease.version}"
12
12
}
13
13
],
14
14
[
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ before_deploy:
25
25
- node --version
26
26
- npm --version
27
27
- npm install
28
- - pip install bump2version
28
+ - pip install bump-my-version
29
29
30
30
deploy :
31
31
- provider : script
You can’t perform that action at this time.
0 commit comments