chore: bump version to v0.35.0

Adds release notes for v0.35.0 including:
- Dynamic molecule bonding with --ref flag
- bd activity command for real-time state feed
- waits-for dependency type for fanout gates
- Parallel step detection for molecules
- bd list --parent flag
- Molecule navigation commands
- Performance indexes and bug fixes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-23 04:57:56 -08:00
parent 379f80d7f7
commit fcf5e6aab6
12 changed files with 68 additions and 33 deletions

View File

@@ -288,6 +288,26 @@ type VersionChange struct {
// versionChanges contains agent-actionable changes for recent versions
var versionChanges = []VersionChange{
{
Version: "0.35.0",
Date: "2025-12-23",
Changes: []string{
"NEW: bd activity command - Real-time state feed for molecule monitoring (bd-xo1o.3)",
"NEW: Dynamic molecule bonding - bd mol bond --ref <id> attaches protos at runtime (bd-xo1o.1)",
"NEW: waits-for dependency type - Fanout gates for parallel step coordination (bd-xo1o.2)",
"NEW: Parallel step detection - Molecules auto-detect parallelizable steps (bd-xo1o.4)",
"NEW: bd list --parent flag - Filter issues by parent (bd-yqhh)",
"NEW: Molecule navigation - bd mol next/prev/current for step traversal (bd-sal9, bd-ieyy)",
"NEW: Entity tracking types - Creator and Validations fields for work attribution (bd-7pwh)",
"IMPROVED: bd doctor --fix replaces manual commands (GH#715)",
"IMPROVED: bd dep tree shows external dependencies (bd-vks2, bd-mv6h, bd-d9mu)",
"IMPROVED: Performance indexes for large databases (bd-bha9, bd-a9y3, bd-jke6, bd-8x3w, bd-lk39)",
"FIX: Rich mutation events emitted for status changes (bd-313v)",
"FIX: External deps filtered from GetBlockedIssues (bd-396j)",
"FIX: bd create -f works with daemon mode (GH#719)",
"FIX: Parallel execution migration race conditions (GH#720)",
},
},
{
Version: "0.34.0",
Date: "2025-12-22",

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# bd-shim v1
# bd-hooks-version: 0.34.0
# bd-hooks-version: 0.35.0
#
# bd (beads) post-checkout hook - thin shim
#

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# bd-shim v1
# bd-hooks-version: 0.34.0
# bd-hooks-version: 0.35.0
#
# bd (beads) post-merge hook - thin shim
#

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# bd-shim v1
# bd-hooks-version: 0.34.0
# bd-hooks-version: 0.35.0
#
# bd (beads) pre-commit hook - thin shim
#

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# bd-shim v1
# bd-hooks-version: 0.34.0
# bd-hooks-version: 0.35.0
#
# bd (beads) pre-push hook - thin shim
#

View File

@@ -14,7 +14,7 @@ import (
var (
// Version is the current version of bd (overridden by ldflags at build time)
Version = "0.34.0"
Version = "0.35.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)