From aece64f4d3178846a40a11158639233d38b27b1b Mon Sep 17 00:00:00 2001 From: Nillo Date: Thu, 18 Jun 2026 22:28:48 +0200 Subject: [PATCH] docs(website): bump version surface to 3.5.0 Update the introduction "Current version" callout and the docusaurus config fallback literal from 3.4.0 to 3.5.0 now that 3.5.0 is the published release (npm latest = 3.5.0). Layered on top of #145 so the demo GIFs are preserved. Co-Authored-By: Claude Opus 4.8 --- website/docs/introduction/index.md | 2 +- website/docusaurus.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/introduction/index.md b/website/docs/introduction/index.md index 3ef3c72..4e86441 100644 --- a/website/docs/introduction/index.md +++ b/website/docs/introduction/index.md @@ -18,7 +18,7 @@ Reach for ContextRelay when **one agent should implement while the other reviews *Scripted demo using real `ctxrelay` output format — paths, IDs, and timestamps are sanitized.* :::info Current version -These docs describe **ContextRelay 3.4.0**, the current release on [npm](https://www.npmjs.com/package/@proofofwork-agency/contextrelay). After upgrading the package, run [`ctxrelay upgrade`](../getting-started/upgrading-contextrelay.md) to reconcile your local setup. +These docs describe **ContextRelay 3.5.0**, the current release on [npm](https://www.npmjs.com/package/@proofofwork-agency/contextrelay). After upgrading the package, run [`ctxrelay upgrade`](../getting-started/upgrading-contextrelay.md) to reconcile your local setup. ::: ## Install and first run diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index 2a6e665..cda4668 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -7,7 +7,7 @@ import type * as Preset from '@docusaurus/preset-classic'; // Surface the shipped package version in the navbar. Read it from the root // package.json at build time so it tracks each release automatically; fall back // to a literal if the read ever fails, so a bad path can never break the build. -let packageVersion = '3.4.0'; +let packageVersion = '3.5.0'; try { packageVersion = JSON.parse( readFileSync(resolve(process.cwd(), '../package.json'), 'utf8'),