From 161291ffded523e0b4526b491843fdb185c52e84 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 11 Sep 2026 23:48:43 +0000 Subject: [PATCH] chore(release): 1.6.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch release over v1.6.2, carrying the one unreleased fix on main: - fix(schema): restore application name alongside canonical id (#213) Bumps package.json and ANALYZER_VERSION in lockstep — the release workflow fails fast when the tag version and package.json disagree, and ANALYZER_VERSION is stamped into the cache so an upgrade invalidates stale per-file Modules. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01ERd8HAa8fbyX7YUfauwUyn --- package.json | 2 +- src/utils/version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 26a2ada..1a1153c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeanalyzer-typescript", - "version": "1.6.2", + "version": "1.6.3", "description": "CLDK TypeScript analyzer \u2014 emits the canonical schema v2 (additive CPG: symbol table \u2192 call graph \u2192 intraprocedural dataflow \u2192 interprocedural SDG) as analysis.json and Neo4j, via ts-morph.", "type": "module", "module": "src/index.ts", diff --git a/src/utils/version.ts b/src/utils/version.ts index f1ac42a..ccb0df1 100644 --- a/src/utils/version.ts +++ b/src/utils/version.ts @@ -3,4 +3,4 @@ * the analyzer invalidates stale per-file Modules (whose source is unchanged but whose extracted * shape may differ across analyzer versions). */ -export const ANALYZER_VERSION = "1.6.2"; +export const ANALYZER_VERSION = "1.6.3";