fix: Sync all component versions to 0.9.2
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 <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
"name": "beads",
|
"name": "beads",
|
||||||
"source": ".",
|
"source": ".",
|
||||||
"description": "AI-supervised issue tracker for coding workflows",
|
"description": "AI-supervised issue tracker for coding workflows",
|
||||||
"version": "0.9.0"
|
"version": "0.9.2"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "beads",
|
"name": "beads",
|
||||||
"description": "AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.",
|
"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": {
|
"author": {
|
||||||
"name": "Steve Yegge",
|
"name": "Steve Yegge",
|
||||||
"url": "https://github.com/steveyegge"
|
"url": "https://github.com/steveyegge"
|
||||||
|
|||||||
@@ -277,6 +277,7 @@ This will show:
|
|||||||
### Version Numbering
|
### Version Numbering
|
||||||
|
|
||||||
Beads follows semantic versioning. The plugin version tracks the bd CLI version:
|
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+
|
- Plugin 0.9.x requires bd CLI 0.9.0+
|
||||||
- Major version bumps may introduce breaking changes
|
- Major version bumps may introduce breaking changes
|
||||||
- Check CHANGELOG.md for release notes
|
- Check CHANGELOG.md for release notes
|
||||||
|
|||||||
@@ -936,7 +936,7 @@ See [examples/](examples/) for scripting patterns. Contributions welcome!
|
|||||||
|
|
||||||
### Is this production-ready?
|
### 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:
|
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:
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "beads-mcp"
|
name = "beads-mcp"
|
||||||
version = "1.0.0"
|
version = "0.9.2"
|
||||||
description = "MCP server for beads issue tracker."
|
description = "MCP server for beads issue tracker."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
|
|||||||
Reference in New Issue
Block a user