From ab147f61ee558c5776cb87ff1be229cd8af93944 Mon Sep 17 00:00:00 2001 From: os-zhuang Date: Fri, 10 Jul 2026 18:11:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(spec):=20PROTOCOL=5FVERSION=2013.0.0=20?= =?UTF-8?q?=E2=86=92=2014.0.0=20=E2=80=94=20re-lockstep=20with=20the=20rel?= =?UTF-8?q?eased=20package=20major?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The #2736 version release bumped @objectstack/spec to 14.0.0 but the handshake constant was not regenerated, so protocol-version.test.ts fails on main for every branch (drift guard doing its job). Co-Authored-By: Claude Fable 5 --- packages/spec/src/kernel/protocol-version.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/spec/src/kernel/protocol-version.ts b/packages/spec/src/kernel/protocol-version.ts index 874d60bfdc..f545bbbe05 100644 --- a/packages/spec/src/kernel/protocol-version.ts +++ b/packages/spec/src/kernel/protocol-version.ts @@ -15,7 +15,7 @@ * Kept in lockstep with the package's own major; `protocol-version.test.ts` * asserts it against `package.json` so the two cannot drift. */ -export const PROTOCOL_VERSION = '13.0.0'; +export const PROTOCOL_VERSION = '14.0.0'; /** The protocol major as an integer — the value the handshake compares. */ export const PROTOCOL_MAJOR: number = Number.parseInt(PROTOCOL_VERSION.split('.')[0]!, 10);