From 0e39f227a4f1def35db00f2a08f93d58a7fe5a21 Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Mon, 18 May 2026 10:13:22 +0800 Subject: [PATCH] chore(release): bump version to 2.7.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ships the fingerprints baseline fix (e7af9ae): every install since 2.7.0 had a broken Phase 7 step 2.5 that threw TypeError on the first /understand run and left fingerprints.json empty/missing, which made every subsequent auto-update escalate to FULL_UPDATE. This release replaces the LLM-written script with a bundled build-fingerprints.mjs and reorders Phase 7 to write fingerprints before meta.json. Anyone upgrading from 2.7.0–2.7.2 should re-run /understand --full to regenerate a valid baseline. --- .claude-plugin/plugin.json | 2 +- .copilot-plugin/plugin.json | 2 +- .cursor-plugin/plugin.json | 2 +- understand-anything-plugin/.claude-plugin/plugin.json | 2 +- understand-anything-plugin/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index c959a93..67018c5 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", - "version": "2.7.2", + "version": "2.7.3", "author": { "name": "Lum1104" }, diff --git a/.copilot-plugin/plugin.json b/.copilot-plugin/plugin.json index 22e0ae3..5c2fa9c 100644 --- a/.copilot-plugin/plugin.json +++ b/.copilot-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", - "version": "2.7.2", + "version": "2.7.3", "author": { "name": "Lum1104" }, diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index d324268..8f9f665 100644 --- a/.cursor-plugin/plugin.json +++ b/.cursor-plugin/plugin.json @@ -2,7 +2,7 @@ "name": "understand-anything", "displayName": "Understand Anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", - "version": "2.7.2", + "version": "2.7.3", "author": { "name": "Lum1104" }, diff --git a/understand-anything-plugin/.claude-plugin/plugin.json b/understand-anything-plugin/.claude-plugin/plugin.json index c959a93..67018c5 100644 --- a/understand-anything-plugin/.claude-plugin/plugin.json +++ b/understand-anything-plugin/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", - "version": "2.7.2", + "version": "2.7.3", "author": { "name": "Lum1104" }, diff --git a/understand-anything-plugin/package.json b/understand-anything-plugin/package.json index 2bf2138..def2ade 100644 --- a/understand-anything-plugin/package.json +++ b/understand-anything-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@understand-anything/skill", - "version": "2.7.2", + "version": "2.7.3", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts",