What problem does it solve?
The release-cel2sql Skill automates the process of preparing and publishing new releases of the cel2sql library, reducing manual steps and ensuring consistency in release management.
Core Features & Use Cases
- Automated Release Preparations: Preps CHANGELOG.md and triggers a release preparation pull request.
- Semantic Versioning: Determines the correct version bump based on commit history.
- Tagging and Pushing: Automates the tagging and pushing of releases to trigger CI workflows.
- Use Case: When you need to cut a new release of cel2sql, this Skill automates the preparation, including updating the CHANGELOG, deciding the version, and creating a release PR.
Quick Start
Run the following commands to prepare a release:
git checkout main && git pull --ff-only origin main
python .claude/skills/release-cel2sql/scripts/prepare_release.py X.Y.Z
git checkout -b chore/release-vX.Y.Z
git add CHANGELOG.md
git commit -m "chore: prepare CHANGELOG for vX.Y.Z release"
git push -u origin chore/release-vX.Y.Z
gh pr create --title "chore: prepare CHANGELOG for vX.Y.Z release" --body "..."