fix(docs): bump the docs version pin to 0.78.0#386
Conversation
The 0.78.0 release (#385) bumped package.json but not the docs version pin, so the docs:freshness gate (version header must equal package.json) failed on main. Update the canonical-api.md '**Version**' header and regenerate docs/api/primitive-catalog.md (the generated 'GENERATED from …@0.78.0' line).
tangletools
left a comment
There was a problem hiding this comment.
✅ Auto-approved PR — 8aca914a
Blanket team auto-approval is enabled for this reviewer service.
The full PR reviewer audit still runs separately and will publish findings if it detects issues.
tangletools · auto-approval · reason: blanket_auto_approve · 2026-06-25T03:53:04Z
🤖 AI Code Review (ensemble)
SummaryThis PR bumps the documented agent-runtime version pin from 0.77.0 to 0.78.0 in two files, but the generated file Issues Found2 total — 0 P1 (blocking) · 2 P2 (should fix) · 0 P3 (nice to have)
|
Follow-up to the 0.78.0 release (#385).
Problem
#385 bumped
package.jsonto0.78.0but didn't update the docs version pin, which a release is supposed to do together. Thedocs:freshnessgate (CLASS 1 — the**Version X.Y.Z**header must equalpackage.json) therefore fails onmain, reddeningci.yml.This is docs-only and does not affect the published package:
publish.yml's verify job doesn't rundocs:check, so@tangle-network/agent-runtime@0.78.0published correctly and is unaffected — only the repo's CI freshness gate is red.Fix
docs/canonical-api.md:**Version 0.77.0** → **0.78.0**(curated header).docs/api/primitive-catalog.md: regenerated viapnpm run docs:api(the generatedGENERATED from …@0.78.0line).Validation
pnpm run docs:check→ exit 0 (version pin present + accurate, no drift).