chore(release): v0.5.0 - #93
Merged
Merged
Conversation
The rrt minor bump (0.4.0 -> 0.5.0) rewrote the "Anselmoo/repo-release-tools@v..." action reference in release.yml to v0.5.0 because .rrt.toml's pin_targets pattern matched it as if it should track vsplot's own project version. That action is an independently-versioned third-party project (currently v1.14.1) with no relationship to vsplot's version number, so v0.5.0 doesn't exist as a tag there and would break the governance-checks CI job outright. - Restore the pin to the actual latest repo-release-tools release, v1.14.1 (verified via git ls-remote against the upstream repo). - Remove the pin_targets entry from .rrt.toml entirely, since this class of third-party action pin is unrelated to vsplot's own version and is already kept current independently (e.g. by Renovate, as with other actions/* pins in this workflow) -- it should never be rewritten by `rrt bump`. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QZTVYD3cKXPgFJx6qSwZoc
Changed Files
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR cuts the v0.5.0 release for VSPlot by bumping extension/package versions, promoting the incremental changelog into CHANGELOG.md, and fixing the CI governance action pin so it tracks repo-release-tools’s own release version rather than VSPlot’s.
Changes:
- Bump VS Code extension version to
0.5.0inpackage.jsonandpackage-lock.json. - Promote release notes into
CHANGELOG.mdand add an[Unreleased]section. - Remove the
.rrt.tomlpin-target that incorrectly rewrote a third-party action pin; update the workflow toAnselmoo/repo-release-tools@v1.14.1.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updates extension version to 0.5.0. |
| package-lock.json | Updates lockfile package version metadata to 0.5.0. |
| CHANGELOG.md | Adds [Unreleased] and a 0.5.0 release entry. |
| .rrt.toml | Removes pin_targets that caused incorrect action pin rewrites. |
| .github/workflows/release.yml | Fixes repo-release-tools action pin to a valid upstream release (v1.14.1). |
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
1
to
+5
| # Change Log | ||
|
|
||
| ## [Unreleased] | ||
|
|
||
| ## [0.5.0] - 2026-08-13 |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #93 +/- ##
==========================================
+ Coverage 95.78% 95.81% +0.03%
==========================================
Files 6 6
Lines 1517 1530 +13
Branches 194 194
==========================================
+ Hits 1453 1466 +13
Misses 64 64
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
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
Release
v0.5.0, drafted and applied via therrtMCP tools (rrt_bump(level="minor")), covering everything merged intomainsince the last release (v0.4.0):Added
Fixed
Why minor, not patch: per conventional commits,
feat(#83) outranksfix(#92) since the last release, so the correct bump is minor (0.4.0→0.5.0).Commits
85edaef—chore: bump version to v0.5.0— version target (package.json), changelog promotion, lockfile refresh (all via therrt bumppipeline)ac70e58—fix: correct repo-release-tools action pin and remove broken pin_targets— see belowA bug the bump surfaced (and fixed in the same branch)
rrt bump'spin_targetsin.rrt.tomlmatched theAnselmoo/repo-release-tools@v...action reference inrelease.ymland rewrote it tov0.5.0— treating an independently-versioned third-party action as if it should track vsplot's own version.v0.5.0doesn't exist as a tag on that repo (verified viagit ls-remote), which would have broken thegovernance-checksCI job outright. Fixed by:repo-release-toolsrelease,v1.14.1pin_targetsentry from.rrt.tomlentirely, since this class of pin is unrelated to vsplot's version and should stay independently managed (as with otheractions/*pins in this workflow)Test plan
rrt_release_check(initial run) confirmed all version/changelog targets consistent before the bug above was foundgrep) that.github/workflows/release.ymlpinsv1.14.1and.rrt.tomlno longer has apin_targetsblock, after the MCPrrt_config/rrt_release_checktools were found to return stale cached results across a branch switchrrt_doctorreports husky + workflow governance hooks correctly configuredgovernance-checksjob now resolvesAnselmoo/repo-release-tools@v1.14.1successfully🤖 Generated with Claude Code
https://claude.ai/code/session_01QZTVYD3cKXPgFJx6qSwZoc