From 480cede64091c16a8c90293148918b7976a10ca8 Mon Sep 17 00:00:00 2001 From: Ramiro Rivera Date: Tue, 28 Jul 2026 05:37:30 +0200 Subject: [PATCH] chore: sync plugin and MCP version fields to 0.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit package.json has been the only version field that moves. The plugin manifests sat three minors behind at 0.8.0, and the version the MCP server advertises to clients was further back still at 0.6.0 — so anything reading the marketplace entry or the server handshake saw a release that shipped weeks ago. Numbers only. The recurrence is what actually needs fixing, and #110 (from @grlee) already does it properly with a sync-version script wired into the npm version lifecycle plus a --check mode for CI. This does not touch that work. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01H2GXsqpMvUhxBSNabSqZdk --- .claude-plugin/marketplace.json | 4 ++-- .claude-plugin/plugin.json | 2 +- server/index.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 4a84f99..0e38fed 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -5,14 +5,14 @@ }, "metadata": { "description": "Persistent coding companion for Claude Code, Pi, and Oh My Pi (requires bun: https://bun.sh/install)", - "version": "0.8.0" + "version": "0.9.3" }, "plugins": [ { "name": "coding-buddy", "source": "./", "description": "Persistent coding companion for Claude Code, Pi, and Oh My Pi. MCP-based terminal pet with ASCII art, stats, reactions, and personality. Requires bun runtime (https://bun.sh/install).", - "version": "0.8.0", + "version": "0.9.3", "author": { "name": "ramarivera" }, diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 8c8d533..ea7c190 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "coding-buddy", - "version": "0.8.0", + "version": "0.9.3", "description": "Persistent coding companion for Claude Code, Pi, and Oh My Pi. MCP-based terminal pet with ASCII art, stats, reactions, and personality.", "author": { "name": "ramarivera" diff --git a/server/index.ts b/server/index.ts index b8ec7cc..816b4bc 100644 --- a/server/index.ts +++ b/server/index.ts @@ -125,7 +125,7 @@ function getInstructions(): string { const server = new McpServer( { name: "coding-buddy", - version: "0.6.0", + version: "0.9.3", }, { instructions: getInstructions(),