Skip to content

Commit f9f2e34

Browse files
committed
chore: remove 'v' from release script
1 parent ffc99f9 commit f9f2e34

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fi
9595
# Commit version change
9696
print_step "Committing version change"
9797
git add marimo/__init__.py
98-
git commit -m "Release $NEW_VERSION"
98+
git commit -m "release: $NEW_VERSION"
9999

100100
# Push changes
101101
if confirm "Push changes to remote?"; then
@@ -105,7 +105,7 @@ fi
105105

106106
# Create and push tag
107107
if confirm "Create and push tag v$NEW_VERSION?"; then
108-
git tag -a "v$NEW_VERSION" -m "Release $NEW_VERSION"
108+
git tag -a "$NEW_VERSION" -m "release: $NEW_VERSION"
109109
git push origin --tags
110110
echo -e "${GREEN}✓ Tag pushed successfully${NC}"
111111
fi

0 commit comments

Comments
 (0)