Skip to content

Commit 4795a15

Browse files
Update justfile
Signed-off-by: Sourya Vatsyayan <sourya@deepsource.io>
1 parent 9b15690 commit 4795a15

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 "chore: bump version to ${new}"
30+
git commit -m "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 "chore: bump version to ${new}"
42+
git commit -m "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 "chore: bump version to ${new}"
54+
git commit -m "Bump version to ${new}"
5555
echo "Bumped ${current} -> ${new}"
5656

5757
# Tag and push a production release

0 commit comments

Comments
 (0)