From c0f1044d429aedb95b80ea2af5147a3c4ab7b953 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Tue, 14 Oct 2025 13:42:37 -0700 Subject: [PATCH] fix: Sync all component versions to 0.9.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes version inconsistencies across the project. All components now at 0.9.2: Updated: - .claude-plugin/plugin.json: 0.9.0 → 0.9.2 - .claude-plugin/marketplace.json: 0.9.0 → 0.9.2 - integrations/beads-mcp/pyproject.toml: 1.0.0 → 0.9.2 - README.md: v0.9.0 → v0.9.2 - PLUGIN.md: Updated version requirements Root cause: Previous version bumps (0.9.0 → 0.9.1 → 0.9.2) only updated cmd/bd/version.go, leaving other components out of sync. The MCP server was initially versioned at 1.0.0 when added today, but syncing to 0.9.2 for consistency since the project is still in alpha. Closes bd-66 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude-plugin/marketplace.json | 2 +- .claude-plugin/plugin.json | 2 +- PLUGIN.md | 1 + README.md | 2 +- integrations/beads-mcp/pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 4ff23e64..d7e8e665 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -9,7 +9,7 @@ "name": "beads", "source": ".", "description": "AI-supervised issue tracker for coding workflows", - "version": "0.9.0" + "version": "0.9.2" } ] } diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 6cb8487d..8d53f06e 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "beads", "description": "AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.", - "version": "0.9.0", + "version": "0.9.2", "author": { "name": "Steve Yegge", "url": "https://github.com/steveyegge" diff --git a/PLUGIN.md b/PLUGIN.md index 783c6b66..ab7be097 100644 --- a/PLUGIN.md +++ b/PLUGIN.md @@ -277,6 +277,7 @@ This will show: ### Version Numbering Beads follows semantic versioning. The plugin version tracks the bd CLI version: +- Plugin 0.9.2 requires bd CLI 0.9.2+ - Plugin 0.9.x requires bd CLI 0.9.0+ - Major version bumps may introduce breaking changes - Check CHANGELOG.md for release notes diff --git a/README.md b/README.md index 0092f93f..1efae823 100644 --- a/README.md +++ b/README.md @@ -936,7 +936,7 @@ See [examples/](examples/) for scripting patterns. Contributions welcome! ### Is this production-ready? -**Current status: Alpha (v0.9.0)** +**Current status: Alpha (v0.9.2)** bd is in active development and being dogfooded on real projects. The core functionality (create, update, dependencies, ready work, collision resolution) is stable and well-tested. However: diff --git a/integrations/beads-mcp/pyproject.toml b/integrations/beads-mcp/pyproject.toml index 76f5b4fd..e1f3b792 100644 --- a/integrations/beads-mcp/pyproject.toml +++ b/integrations/beads-mcp/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "beads-mcp" -version = "1.0.0" +version = "0.9.2" description = "MCP server for beads issue tracker." readme = "README.md" requires-python = ">=3.11"