chore: Bump version to 0.45.0

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Executed-By: beads/crew/dave
Rig: beads
Role: crew
This commit is contained in:
beads/crew/dave
2026-01-06 20:11:48 -08:00
committed by Steve Yegge
parent d02bde04ad
commit 3287340678
12 changed files with 80 additions and 10 deletions

View File

@@ -296,6 +296,24 @@ type VersionChange struct {
// versionChanges contains agent-actionable changes for recent versions
var versionChanges = []VersionChange{
{
Version: "0.45.0",
Date: "2026-01-06",
Changes: []string{
"NEW: Dynamic shell completions - Tab complete issue IDs in bash/zsh/fish (#935)",
"NEW: Android/Termux support - Native ARM64 binaries (#887)",
"NEW: Deep pre-commit integration - bd doctor checks pre-commit configs (bd-28r5)",
"NEW: Rig identity bead type - New 'rig' type for Gas Town tracking (gt-zmznh)",
"NEW: --filter-parent alias - Alternative to --parent in bd list (bd-3p4u)",
"NEW: Unified auto-sync config - Simpler daemon config for agents (#904)",
"NEW: BD_SOCKET env var - Test isolation for daemon socket paths (#914)",
"FIX: Init branch persistence - --branch flag persists to config.yaml (#934)",
"FIX: Worktree resolution - Resolve worktrees by name from git registry (#921)",
"FIX: Sync with redirect - Handle .beads/redirect in git status and import",
"FIX: Doctor improvements - skip-worktree flag, duplicate detection, metadata queries",
"FIX: Update prefix routing - bd update routes like bd show (bd-618f)",
},
},
{
Version: "0.44.0",
Date: "2026-01-04",

View File

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

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env sh
# bd-shim v1
# bd-hooks-version: 0.44.0
# bd-hooks-version: 0.45.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.44.0"
Version = "0.45.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)