rust-release
Installation
SKILL.md
Rust Release Preparation
Automates release workflow: version bump, changelog finalization, documentation and README update, commit, push, and PR creation.
Quick Reference
| Command | Description |
|---|---|
/rust-release patch |
Bump patch version (0.5.7 -> 0.5.8) |
/rust-release minor |
Bump minor version (0.5.7 -> 0.6.0) |
/rust-release major |
Bump major version (0.5.7 -> 1.0.0) |
Workflow
Step 1: Parse Arguments and Detect Bump Type
The first argument determines the version bump type. If no argument is provided, ask the user.
Valid values: patch, minor, major.