prepare-release
Prepare a new release of inspect_evals by creating a release branch, collecting changelog fragments, and opening a PR. Use when user asks to cut/prepare/create a new release or version bump.
/plugin install inspect_evalsdetails
Prepare a Release
This workflow prepares a new release of inspect_evals. It creates a release branch, collects changelog fragments, bumps the version tag, and opens a PR. After merge it tags the merge commit and creates a GitHub release.
Reference: PACKAGE_VERSIONING.md
Prerequisites
- The
ghCLI must be authenticated - You must have push access to the repository
- There must be changelog fragments in
changelog.d/(beyond.gitkeepandTEMPLATE.md)
Phase 1 — Prepare the release branch
-
Ensure
mainis up to date:git fetch origin git checkout main git merge --ff-only origin/mainIf the merge fails, stop and inform the user that their local
mainhas diverged fromorigin/main. -
Check for changelog fragments:
List files in
changelog.d/excluding.gitkeep,TEMPLATE.md, andREADME.*. If there are no fragments, stop and tell the user there is nothing to release. -
Determine the new version:
a. Find the current version from the latest
v*git tag:git tag --sort=-v:refname --list 'v*' | head -1b. Ask the user what kind of bump this is, presenting the semver table from
PACKAGE_VERSIONING.md:Component When to bump Examples Major Breaking changes Removing an eval, API changes, scorer output format changes Minor New features Adding new evals, new task parameters, new utilities Patch Bug fixes Eval fixes, scorer fixes, dataset loading fixes c. Compute the new version string (e.g.
0.4.0,0.3.107). Confirm with the user. -
Create the release branch:
The branch name is
release-YYYY-MM-DDusing today's date.git checkout -b release-YYYY-MM-DD
Phase 2 — Collect the changelog
-
Run scriv collect:
uv run scriv collect --version <NEW_VERSION>This removes the individual fragment files from
changelog.d/and prepends a new section toCHANGELOG.md. -
Present the changelog diff to the user for review:
git diff CHANGELOG.mdTell the user: "Please review the collected changelog above. You can edit
CHANGELOG.mddirectly — let me know when you are satisfied, or tell me what changes to make."Do not proceed until the user confirms the changelog is ready.
-
Stage and commit:
git add CHANGELOG.md changelog.d/ git commit -m "Prepare release v<NEW_VERSION>"
Phase 3 — Push and open a PR
-
Push the branch:
git push -u origin release-YYYY-MM-DD -
Open a draft PR:
<!-- markdownlint-disable-next-line no-space-in-code -->Extract the new version's section from
CHANGELOG.md(everything from the version heading up to but not including the next##heading). Use this as the PR body:gh pr create --draft \ --title "Release v<NEW_VERSION>" \ --body "<EXTRACTED_CHANGELOG_SECTION>"Important: The PR title must start with
Release v(e.g.Release v0.4.0) — this is how therelease-on-merge.ymlworkflow identifies release PRs.Tell the user the PR URL and that it is in draft. They should mark it ready for review when appropriate.
Phase 4 — After the PR is merged (automated)
Once the release PR is merged into main, the .github/workflows/release-on-merge.yml GitHub Actions workflow automatically:
- Tags the merge commit with
v<NEW_VERSION> - Creates a GitHub release with the changelog section as the body
- Builds and publishes the package to PyPI
- Notifies Slack
No manual action is required. The package version is derived from the new tag by setuptools_scm.
Notes
- The package version is derived entirely from git tags via
setuptools_scm— there is no version file to edit. - If something goes wrong mid-workflow, the release branch can be deleted and the process restarted.
- The
vprefix on tags is required (e.g.v0.3.107, not0.3.107). - The
weekly-release.ymlworkflow can also automate Phases 1–3 on a schedule or via manual dispatch, creating the release branch and draft PR for you.
technical
- github
- UKGovernmentBEIS/inspect_evals
- stars
- 517
- license
- MIT
- contributors
- 100
- last commit
- 2026-05-29T04:29:08Z
- file
- .claude/skills/prepare-release/SKILL.md