chore: bump version to 0.3.0 and document version-bump workflow#36
Merged
Conversation
Bump version across all manifest files and expand the Versioning section in AGENTS.md with agent-facing instructions for when/how to bump and how git tags drive distribution. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Bumps the released skill/package version to 0.3.0 and documents a version-bump workflow for agents/contributors.
Changes:
- Update version
0.2.0→0.3.0inpyproject.toml,.claude-plugin/plugin.json,.claude-plugin/marketplace.json, anduv.lock - Expand
AGENTS.mdwith guidance on when/how to bump versions and how tagging relates toskillsCLI resolution
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| uv.lock | Updates locked package entry version to 0.3.0. |
| pyproject.toml | Bumps Python project/package version to 0.3.0. |
| AGENTS.md | Adds/expands documented version-bump and tagging workflow. |
| .claude-plugin/plugin.json | Bumps plugin manifest version to 0.3.0. |
| .claude-plugin/marketplace.json | Bumps marketplace listing versions to 0.3.0 (both occurrences). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+69
to
73
| Single version kept in sync across three files: | ||
|
|
||
| - `pyproject.toml` — Python package version | ||
| - `.claude-plugin/plugin.json` — plugin manifest | ||
| - `.claude-plugin/marketplace.json` — marketplace listing (2 occurrences) |
| Bump all three when releasing. | ||
| ### When to bump | ||
|
|
||
| Include a **patch** version bump (`x.y.Z`) in any PR that changes skill behavior, scripts, or SKILL.md files. Use **minor** (`x.Y.0`) for new skills/features, **major** (`X.0.0`) for breaking changes. Do NOT bump for docs-only or CI-only changes. |
Comment on lines
1
to
4
| [project] | ||
| name = "rhdh-skill" | ||
| version = "0.2.0" | ||
| version = "0.3.0" | ||
| description = "Claude Code skill for RHDH plugin development" |
Comment on lines
+81
to
+84
| 1. Read the current version from `pyproject.toml`. | ||
| 2. Compute the new version (patch/minor/major as appropriate). | ||
| 3. Update all three files (4 occurrences total) in the same commit. | ||
| 4. The PR title should include the new version, e.g., `feat: add foo skill (v0.4.0)`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
0.2.0→0.3.0acrosspyproject.toml,plugin.json, andmarketplace.jsonAGENTS.mdwith agent-facing instructions:skillsCLI resolves via git tags, with tagging instructions post-mergeTest plan
uv run pytest)v0.3.0and verifynpx skills add redhat-developer/rhdh-skill@v0.3.0resolves correctly🤖 Generated with Claude Code