在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用version-bump
星标1
分支0
更新时间2026年1月24日 18:08
Bump version in Cargo.toml
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Bump version in Cargo.toml
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create commits following Angular Conventional Commits format with proper scope naming for consistent changelog generation
Prepare a release including version bump, testing, and PR creation
Run tests, linting, and formatting checks for rhusky
| name | version-bump |
| description | Bump version in Cargo.toml |
Use this skill when bumping the version of rhusky.
Cargo.toml and update the version fieldcargo update --workspace to update Cargo.lockchore(version): bump X.Y.Z -> A.B.Ccog bump - it creates local tags which conflict with
the CI workflow that creates tags after tests passCargo.toml version fieldcargo update --workspacegit add Cargo.toml Cargo.lockgit commit -m "chore(version): bump X.Y.Z -> A.B.C"# Get version from Cargo.toml
grep '^version' Cargo.toml
After committing the bump, verify:
git log -1 --oneline
git diff HEAD~1 --stat
Then push when ready:
git push origin <branch>