From bdba4795e28e0fc940d8924be35cc076ac3919eb Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Fri, 24 Apr 2026 12:13:58 +0800 Subject: [PATCH] chore: bump to 2.3.2 and sync version manifest list Bumps all five version-carrying manifests to 2.3.2, bringing .copilot-plugin/plugin.json back in sync (was stuck at 2.2.0), and updates CLAUDE.md to reflect the true set of files that must move together: the nested understand-anything-plugin/.claude-plugin/plugin.json and .copilot-plugin/plugin.json were missing, and marketplace.json was incorrectly listed (its plugins[] entry does not support a version field). Co-Authored-By: Claude Opus 4.7 (1M context) --- .claude-plugin/plugin.json | 2 +- .copilot-plugin/plugin.json | 2 +- .cursor-plugin/plugin.json | 2 +- CLAUDE.md | 7 +++++-- understand-anything-plugin/.claude-plugin/plugin.json | 2 +- understand-anything-plugin/package.json | 2 +- 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 0718569..df52ba3 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.3.1", + "version": "2.3.2", "author": { "name": "Lum1104" }, diff --git a/.copilot-plugin/plugin.json b/.copilot-plugin/plugin.json index c044409..aea7e22 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.2.0", + "version": "2.3.2", "author": { "name": "Lum1104" }, diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index 1da213d..a3c9aa7 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.3.1", + "version": "2.3.2", "author": { "name": "Lum1104" }, diff --git a/CLAUDE.md b/CLAUDE.md index 040e3c7..10334a4 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -55,11 +55,14 @@ An open-source tool combining LLM intelligence + static analysis to produce inte - `scripts/generate-large-graph.mjs` — Generates a fake knowledge graph for performance testing (e.g. large-graph layout). Writes to `.understand-anything/knowledge-graph.json`. Usage: `node scripts/generate-large-graph.mjs [nodeCount]` (default: 3000 nodes). Not part of the production pipeline. ## Versioning -When pushing to remote, bump the version in **all four** of these files (keep them in sync): +When pushing to remote, bump the version in **all five** of these files (keep them in sync): - `understand-anything-plugin/package.json` → `"version"` field -- `.claude-plugin/marketplace.json` → `plugins[0].version` field +- `understand-anything-plugin/.claude-plugin/plugin.json` → `"version"` field - `.claude-plugin/plugin.json` → `"version"` field - `.cursor-plugin/plugin.json` → `"version"` field +- `.copilot-plugin/plugin.json` → `"version"` field + +Note: `.claude-plugin/marketplace.json` does **not** carry a version — the `plugins[]` entry only supports `name` and `source`, and adding other fields causes marketplace schema validation failures. ## Testing Local Plugin Changes diff --git a/understand-anything-plugin/.claude-plugin/plugin.json b/understand-anything-plugin/.claude-plugin/plugin.json index 0718569..df52ba3 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.3.1", + "version": "2.3.2", "author": { "name": "Lum1104" }, diff --git a/understand-anything-plugin/package.json b/understand-anything-plugin/package.json index ff4f76b..6676744 100644 --- a/understand-anything-plugin/package.json +++ b/understand-anything-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@understand-anything/skill", - "version": "2.3.1", + "version": "2.3.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts",