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'),