Claude-skill-registry bump-version
Bump version numbers for a new release. Use when releasing, updating version, or preparing a new version.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/bump-version" ~/.claude/skills/majiayu000-claude-skill-registry-bump-version && rm -rf "$T"
manifest:
skills/data/bump-version/SKILL.mdsource content
Bump Version
Update the version string in both of these files (they must match):
-
line 7:pyproject.tomlversion = "X.Y.Z" -
line 27:pytest_claude_agent_sdk/__init__.py__version__ = "X.Y.Z"
Steps
- Ask user for the new version if not provided
- Read both files to confirm current version
- Update both files with new version
- Show diff of changes
- Suggest commit message:
Bump version to X.Y.Z
Version Format
Use semantic versioning:
MAJOR.MINOR.PATCH
- MAJOR: Breaking changes
- MINOR: New features, backward compatible
- PATCH: Bug fixes, backward compatible