From a2a1b347f651ba4a569f559bb1ff2d1572297c4f Mon Sep 17 00:00:00 2001 From: "Henner M. Kruse" Date: Wed, 5 Aug 2026 18:19:29 +0000 Subject: [PATCH] Bump plugin versions for the setup.md fix (missed in prior commit) git-manager 1.1.0 -> 1.1.1, obsidian-vault-kb 1.0.0 -> 1.0.1, in both plugin.json and the marketplace.json entry, per the convention in ARCHITECTURE.md ("Bump version in the plugin's plugin.json and its marketplace.json entry on updates") that commit 9f39a89 should have followed. Patch bump: the setup.md changes fix a bug and add argument-hint handling, no new flags or breaking changes. This also matters functionally, not just for convention: the exact bug that commit fixed was Claude Code leaving a stale, un-bumped version directory in the plugin cache alongside the active one. Not bumping the version here would mean this very fix might not get a fresh cache directory on the next `/plugin marketplace update`. --- .claude-plugin/marketplace.json | 4 ++-- .../plugins/git-manager/.claude-plugin/plugin.json | 2 +- .../plugins/obsidian-vault-kb/.claude-plugin/plugin.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index a0cef47..0a1cd07 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -9,14 +9,14 @@ { "name": "obsidian-vault-kb", "source": "./vendor/claude-code/plugins/obsidian-vault-kb", - "version": "1.0.0", + "version": "1.0.1", "description": "Obsidian vault as a searchable knowledge base for lookup and note-taking.", "keywords": ["obsidian", "knowledge-base", "notes", "vault", "markdown"] }, { "name": "git-manager", "source": "./vendor/claude-code/plugins/git-manager", - "version": "1.1.0", + "version": "1.1.1", "description": "Whitelisted git operations across one or more repositories via a single wrapper script, avoiding cd/chaining patterns that break Bash permission whitelisting.", "keywords": ["git", "version-control", "workflow"] } diff --git a/vendor/claude-code/plugins/git-manager/.claude-plugin/plugin.json b/vendor/claude-code/plugins/git-manager/.claude-plugin/plugin.json index cd31653..42d740d 100644 --- a/vendor/claude-code/plugins/git-manager/.claude-plugin/plugin.json +++ b/vendor/claude-code/plugins/git-manager/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "git-manager", "description": "Manages git operations across one or more repositories (code, Obsidian vaults, etc.) through a single whitelisted wrapper script, avoiding the cd/chaining patterns that break Claude Code's Bash permission whitelist.", - "version": "1.1.0", + "version": "1.1.1", "author": { "name": "Henner" }, diff --git a/vendor/claude-code/plugins/obsidian-vault-kb/.claude-plugin/plugin.json b/vendor/claude-code/plugins/obsidian-vault-kb/.claude-plugin/plugin.json index e4b2a2b..9cab22f 100644 --- a/vendor/claude-code/plugins/obsidian-vault-kb/.claude-plugin/plugin.json +++ b/vendor/claude-code/plugins/obsidian-vault-kb/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "obsidian-vault-kb", "description": "Reads an Obsidian vault as a knowledge base and uses its notes (Markdown files, frontmatter, tags, wikilinks, folder structure) to answer questions and help solve problems, regardless of the vault's subject matter.", - "version": "1.0.0", + "version": "1.0.1", "author": { "name": "Henner" },