بنقرة واحدة
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