Skip to content

Commit 89e7b54

Browse files
committed
chore: bump version to 0.31.0
1 parent 9d19115 commit 89e7b54

File tree

7 files changed

+24
-6
lines changed

7 files changed

+24
-6
lines changed

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "beads",
1010
"source": "./",
1111
"description": "AI-supervised issue tracker for coding workflows",
12-
"version": "0.30.7"
12+
"version": "0.31.0"
1313
}
1414
]
1515
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "beads",
33
"description": "AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.",
4-
"version": "0.30.7",
4+
"version": "0.31.0",
55
"author": {
66
"name": "Steve Yegge",
77
"url": "https://github.com/steveyegge"

cmd/bd/info.go

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,24 @@ type VersionChange struct {
287287

288288
// versionChanges contains agent-actionable changes for recent versions
289289
var versionChanges = []VersionChange{
290+
{
291+
Version: "0.31.0",
292+
Date: "2025-12-20",
293+
Changes: []string{
294+
"NEW: bd defer/bd undefer commands - Deferred status for icebox issues (bd-4jr)",
295+
"NEW: Agent audit trail - .beads/interactions.jsonl with bd audit record/label (GH#649)",
296+
"NEW: Directory-aware label scoping for monorepos (GH#541) - Auto-filter by directory.labels config",
297+
"NEW: Molecules catalog - Templates in separate molecules.jsonl with hierarchical loading",
298+
"NEW: Git commit config - git.author and git.no-gpg-sign options (GH#600)",
299+
"NEW: create.require-description config option (GH#596)",
300+
"CHANGED: bd stats merged into bd status (GH#644) - stats is now alias, colorized output",
301+
"CHANGED: Thin hook shims (GH#615) - Hooks delegate to bd hooks run, no more version drift",
302+
"CHANGED: MCP context tool consolidation - set_context/where_am_i/init merged into single context tool",
303+
"FIX: relates-to excluded from cycle detection (GH#661)",
304+
"FIX: Doctor checks .local_version instead of deprecated LastBdVersion (GH#662)",
305+
"FIX: Read-only gitignore in stealth mode prints manual instructions (GH#663)",
306+
},
307+
},
290308
{
291309
Version: "0.30.7",
292310
Date: "2025-12-19",

cmd/bd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
var (
1616
// Version is the current version of bd (overridden by ldflags at build time)
17-
Version = "0.30.7"
17+
Version = "0.31.0"
1818
// Build can be set via ldflags at compile time
1919
Build = "dev"
2020
// Commit and branch the git revision the binary was built from (optional ldflag)

integrations/beads-mcp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "beads-mcp"
3-
version = "0.30.7"
3+
version = "0.31.0"
44
description = "MCP server for beads issue tracker."
55
readme = "README.md"
66
requires-python = ">=3.10"

integrations/beads-mcp/src/beads_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
beads (bd) issue tracker functionality to MCP Clients.
55
"""
66

7-
__version__ = "0.30.7"
7+
__version__ = "0.31.0"

npm-package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@beads/bd",
3-
"version": "0.30.7",
3+
"version": "0.31.0",
44
"description": "Beads issue tracker - lightweight memory system for coding agents with native binary support",
55
"main": "bin/bd.js",
66
"bin": {

0 commit comments

Comments
 (0)