File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ bump-patch:
2727 new=" ${major} .${minor} .$(( patch + 1 )) "
2828 echo " $new " > VERSION
2929 git add VERSION
30- git commit -m " Bump version to ${new} "
30+ git commit -m " chore: bump version to ${new} "
3131 echo " Bumped ${current} -> ${new} "
3232
3333# Bump minor version (x.Y.0)
@@ -39,7 +39,7 @@ bump-minor:
3939 new=" ${major} .$(( minor + 1 )) .0"
4040 echo " $new " > VERSION
4141 git add VERSION
42- git commit -m " Bump version to ${new} "
42+ git commit -m " chore: bump version to ${new} "
4343 echo " Bumped ${current} -> ${new} "
4444
4545# Bump major version (X.0.0)
@@ -51,7 +51,7 @@ bump-major:
5151 new=" $(( major + 1 )) .0.0"
5252 echo " $new " > VERSION
5353 git add VERSION
54- git commit -m " Bump version to ${new} "
54+ git commit -m " chore: bump version to ${new} "
5555 echo " Bumped ${current} -> ${new} "
5656
5757# Tag and push a production release
You can’t perform that action at this time.
0 commit comments