-
Notifications
You must be signed in to change notification settings - Fork 0
release
github-actions[bot] edited this page Aug 22, 2025
·
1 revision
- Maintain semantic versions (vMAJOR.MINOR.PATCH).
- Track notable changes in
docs/RELEASE_NOTES.md
.
git pull
export VERSION=v0.1.0
sed -i "s/^SQLumAI .*/SQLumAI $VERSION/" README.md || true
# Update notes
echo "## $VERSION ($(date -I))" >> docs/RELEASE_NOTES.md
echo "- Initial MVP 1–3 with LLM, CI, insights" >> docs/RELEASE_NOTES.md
git add -A && git commit -m "chore(release): $VERSION"
git tag -a "$VERSION" -m "$VERSION"
git push origin main --tags
- CI runs tests, Docker integration, and LLM smoke.
- Consider publishing artifacts (docs, reports) as needed.