From f3564a5917e3b9d670d22c4dedae2ca471d08cfc Mon Sep 17 00:00:00 2001 From: Kentaro Wakayama Date: Fri, 19 Jun 2026 09:12:18 +0200 Subject: [PATCH] Advance framework version for Anthropic replay fix Constraint: Release metadata needs to reflect the merged Anthropic replay fix. Rejected: Bumping generated npm artifacts | build output is generated during release/publish and current source version surfaces are deno.json plus src/utils/version-constant.ts. Confidence: high Scope-risk: narrow Directive: Keep deno.json and src/utils/version-constant.ts synchronized for manual version bumps. Tested: deno fmt --check deno.json src/utils/version-constant.ts; git diff --check; deno task verify:quick reached existing lint:cli-boundary blocker after manifest, fmt, lint, and style passed. Not-tested: Full verify:quick completion, blocked by pre-existing CLI boundary violations outside this change. --- deno.json | 2 +- src/utils/version-constant.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.json b/deno.json index 19972b0138..9222e23a93 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "veryfront", - "version": "0.1.865", + "version": "0.1.866", "license": "Apache-2.0", "nodeModulesDir": "auto", "minimumDependencyAge": { diff --git a/src/utils/version-constant.ts b/src/utils/version-constant.ts index 72e9486e49..a598583690 100644 --- a/src/utils/version-constant.ts +++ b/src/utils/version-constant.ts @@ -1,4 +1,4 @@ // Keep in sync with deno.json version. // scripts/release.ts updates this constant during releases. /** Shared version value. */ -export const VERSION = "0.1.865"; +export const VERSION = "0.1.866";