원클릭으로
prepare-release
Prepare a new version release with changelog and version bumps
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Prepare a new version release with changelog and version bumps
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add a new lint rule to the validator
Review code changes for quality, correctness, and style
Guide for writing conventional commits with gitmoji
Create GitHub pull requests with clear titles and structured descriptions. Use when the user asks to open, create, or submit a pull request or PR.
Identify and fix Clippy warnings in Rust code
Run the test suite and report results
| name | prepare-release |
| description | Prepare a new version release with changelog and version bumps |
| license | MIT OR Apache-2.0 |
Steps to prepare a new skilo release.
Cargo.tomlCargo.lockCHANGELOG.md.github/SECURITY.mdCargo.lock)Update version in Cargo.toml:
[package]
version = "X.Y.Z"
After updating Cargo.toml, run cargo check to update Cargo.lock:
cargo check
Follow Keep a Changelog format:
## [X.Y.Z] - YYYY-MM-DD
### Added
- New features
### Changed
- Changes to existing functionality
### Fixed
- Bug fixes
Search for hardcoded version numbers in documentation and update them:
# Find version references (e.g., skilo@0.3.0, v0.3.0)
rg "skilo@\d+\.\d+\.\d+" --type md
rg "v\d+\.\d+\.\d+" README.md
Common locations:
README.md - CI example (cargo install skilo@X.Y.Z).github/SECURITY.md declares which release series receives security fixes.
Bump its Supported Versions table so the new minor series is marked
supported and any series that is no longer maintained is dropped:
| Version | Supported |
| ------- | ------------------ |
| 0.11.x | :white_check_mark: |
| < 0.11 | :x: |
# Verify everything passes
cargo test && cargo clippy
# Commit release changes
git add -A
git commit -m "chore: release vX.Y.Z"
# Create annotated tag
git tag -a vX.Y.Z -m "Release vX.Y.Z"
# Push with tags
git push && git push --tags
# Dry run first
cargo publish --dry-run
# Publish
cargo publish