We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc99f9 commit f9f2e34Copy full SHA for f9f2e34
1 file changed
scripts/release.sh
@@ -95,7 +95,7 @@ fi
95
# Commit version change
96
print_step "Committing version change"
97
git add marimo/__init__.py
98
-git commit -m "Release $NEW_VERSION"
+git commit -m "release: $NEW_VERSION"
99
100
# Push changes
101
if confirm "Push changes to remote?"; then
@@ -105,7 +105,7 @@ fi
105
106
# Create and push tag
107
if confirm "Create and push tag v$NEW_VERSION?"; then
108
- git tag -a "v$NEW_VERSION" -m "Release $NEW_VERSION"
+ git tag -a "$NEW_VERSION" -m "release: $NEW_VERSION"
109
git push origin --tags
110
echo -e "${GREEN}✓ Tag pushed successfully${NC}"
111
fi
0 commit comments