-
Bump interdependencies of packages to the next version
php bin/bump-deps.php <version>
Use
php bin/bump-deps.php --detectto check the current version. -
Update
CHANGELOG.mdwith the new version entry (suggestion: use an LLM to draft the changelog fromgit logsince the last tag) -
Commit, tag and push
git add -A && git commit -m "release <version>" git tag <version> git push && git push --tags
-
Run the release workflow with the tag as input:
gh workflow run release.yml -f tag=<version>
Or via GitHub UI: Run workflow → enter the tag.
This splits all packages to their individual repos and creates a GitHub release with notes composed from
CHANGELOG.mdand auto-detected contributors.