From 9bc4615ed2c22839d78a1749d0e0f9c62f9944dc Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Fri, 29 May 2026 17:20:23 -0700 Subject: [PATCH] Use PROTOCOL_VERSION instead of hard-coded string --- types/version/registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/version/registry.ts b/types/version/registry.ts index f2cfaa2..4d049b0 100644 --- a/types/version/registry.ts +++ b/types/version/registry.ts @@ -34,7 +34,7 @@ export const PROTOCOL_VERSION = '0.3.0'; * `scripts/verify-release-metadata.ts`. */ export const SUPPORTED_PROTOCOL_VERSIONS: readonly string[] = Object.freeze([ - '0.3.0', + PROTOCOL_VERSION, ]); // ─── SemVer Comparison ───────────────────────────────────────────────────────