From c0dc9b3e717135dec779effe5835ddf7fce441e9 Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Fri, 27 Mar 2026 17:10:10 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20version=20references=20in=20token?= =?UTF-8?q?-reduction=20plan=20(1.0.2=20=E2=86=92=201.2.2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/plans/2026-03-27-token-reduction-impl.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/plans/2026-03-27-token-reduction-impl.md b/docs/plans/2026-03-27-token-reduction-impl.md index 08d88ed..45c04eb 100644 --- a/docs/plans/2026-03-27-token-reduction-impl.md +++ b/docs/plans/2026-03-27-token-reduction-impl.md @@ -851,17 +851,17 @@ Per project convention, all four version files must stay in sync when changes ar node -e "const p = require('./understand-anything-plugin/package.json'); console.log(p.version)" ``` -Expected: `1.0.1` (or whatever the current version is). +Expected: `1.2.1` (or whatever the current version is). ### Step 2: Bump patch version in all four files -New version: `1.0.2` (patch bump — internal optimization, no API changes). +New version: `1.2.2` (patch bump — internal optimization, no API changes). Update each file: -- `understand-anything-plugin/package.json`: `"version": "1.0.2"` -- `.claude-plugin/marketplace.json`: `"version": "1.0.2"` in `plugins[0]` -- `.claude-plugin/plugin.json`: `"version": "1.0.2"` -- `.cursor-plugin/plugin.json`: `"version": "1.0.2"` +- `understand-anything-plugin/package.json`: `"version": "1.2.2"` +- `.claude-plugin/marketplace.json`: `"version": "1.2.2"` in `plugins[0]` +- `.claude-plugin/plugin.json`: `"version": "1.2.2"` +- `.cursor-plugin/plugin.json`: `"version": "1.2.2"` ### Step 3: Verify all four files match @@ -869,7 +869,7 @@ Update each file: grep -r '"version"' understand-anything-plugin/package.json .claude-plugin/marketplace.json .claude-plugin/plugin.json .cursor-plugin/plugin.json ``` -All four should show `"version": "1.0.2"`. +All four should show `"version": "1.2.2"`. ### Step 4: Commit @@ -878,7 +878,7 @@ git add understand-anything-plugin/package.json \ .claude-plugin/marketplace.json \ .claude-plugin/plugin.json \ .cursor-plugin/plugin.json -git commit -m "chore: bump version to 1.0.2" +git commit -m "chore: bump version to 1.2.2" ``` ---