Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기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>