fix: Update version bump script to include MCP server __init__.py

Issue found: bump-version.sh was missing the MCP server's __init__.py file, causing version mismatches (pyproject.toml: 0.9.2, __init__.py: 1.0.0).

Changes:
- Add integrations/beads-mcp/src/beads_mcp/__init__.py to update list
- Add it to git staging in auto-commit
- Add it to verification check
- Fix current version mismatch: 1.0.0 to 0.9.2

Now the script updates 7 files instead of 6
This commit is contained in:
Steve Yegge
2025-10-14 14:31:56 -07:00
parent a7693aee97
commit 2bb6f026c2
2 changed files with 11 additions and 3 deletions

View File

@@ -4,4 +4,4 @@ This package provides an MCP (Model Context Protocol) server that exposes
beads (bd) issue tracker functionality to MCP Clients.
"""
__version__ = "1.0.0"
__version__ = "0.9.2"