chore: bump version to 0.31.0
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
"name": "beads",
|
||||
"source": "./",
|
||||
"description": "AI-supervised issue tracker for coding workflows",
|
||||
"version": "0.30.7"
|
||||
"version": "0.31.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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.30.7",
|
||||
"version": "0.31.0",
|
||||
"author": {
|
||||
"name": "Steve Yegge",
|
||||
"url": "https://github.com/steveyegge"
|
||||
|
||||
@@ -287,6 +287,24 @@ type VersionChange struct {
|
||||
|
||||
// versionChanges contains agent-actionable changes for recent versions
|
||||
var versionChanges = []VersionChange{
|
||||
{
|
||||
Version: "0.31.0",
|
||||
Date: "2025-12-20",
|
||||
Changes: []string{
|
||||
"NEW: bd defer/bd undefer commands - Deferred status for icebox issues (bd-4jr)",
|
||||
"NEW: Agent audit trail - .beads/interactions.jsonl with bd audit record/label (GH#649)",
|
||||
"NEW: Directory-aware label scoping for monorepos (GH#541) - Auto-filter by directory.labels config",
|
||||
"NEW: Molecules catalog - Templates in separate molecules.jsonl with hierarchical loading",
|
||||
"NEW: Git commit config - git.author and git.no-gpg-sign options (GH#600)",
|
||||
"NEW: create.require-description config option (GH#596)",
|
||||
"CHANGED: bd stats merged into bd status (GH#644) - stats is now alias, colorized output",
|
||||
"CHANGED: Thin hook shims (GH#615) - Hooks delegate to bd hooks run, no more version drift",
|
||||
"CHANGED: MCP context tool consolidation - set_context/where_am_i/init merged into single context tool",
|
||||
"FIX: relates-to excluded from cycle detection (GH#661)",
|
||||
"FIX: Doctor checks .local_version instead of deprecated LastBdVersion (GH#662)",
|
||||
"FIX: Read-only gitignore in stealth mode prints manual instructions (GH#663)",
|
||||
},
|
||||
},
|
||||
{
|
||||
Version: "0.30.7",
|
||||
Date: "2025-12-19",
|
||||
|
||||
@@ -14,7 +14,7 @@ import (
|
||||
|
||||
var (
|
||||
// Version is the current version of bd (overridden by ldflags at build time)
|
||||
Version = "0.30.7"
|
||||
Version = "0.31.0"
|
||||
// Build can be set via ldflags at compile time
|
||||
Build = "dev"
|
||||
// Commit and branch the git revision the binary was built from (optional ldflag)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "beads-mcp"
|
||||
version = "0.30.7"
|
||||
version = "0.31.0"
|
||||
description = "MCP server for beads issue tracker."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
||||
@@ -4,4 +4,4 @@ This package provides an MCP (Model Context Protocol) server that exposes
|
||||
beads (bd) issue tracker functionality to MCP Clients.
|
||||
"""
|
||||
|
||||
__version__ = "0.30.7"
|
||||
__version__ = "0.31.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@beads/bd",
|
||||
"version": "0.30.7",
|
||||
"version": "0.31.0",
|
||||
"description": "Beads issue tracker - lightweight memory system for coding agents with native binary support",
|
||||
"main": "bin/bd.js",
|
||||
"bin": {
|
||||
|
||||
Reference in New Issue
Block a user