chore(release): v0.47.2
- Dolt backend (experimental) - bd show --children flag - NixOS support improvements - Fix redirect + sync-branch incompatibility - Fix doctor project-level settings detection - Fix contributor routing Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
committed by
Steve Yegge
parent
39dbe90ade
commit
159114563b
@@ -296,6 +296,20 @@ type VersionChange struct {
|
||||
|
||||
// versionChanges contains agent-actionable changes for recent versions
|
||||
var versionChanges = []VersionChange{
|
||||
{
|
||||
Version: "0.47.2",
|
||||
Date: "2026-01-14",
|
||||
Changes: []string{
|
||||
"NEW: Dolt backend (experimental) - bd init --backend=dolt for version-controlled storage",
|
||||
"NEW: bd show --children flag - Display child issues inline with parent",
|
||||
"NEW: Comprehensive NixOS support - Improved flake and home-manager integration",
|
||||
"FIX: Redirect + sync-branch incompatibility - bd sync works in redirected repos (bd-wayc3)",
|
||||
"FIX: Doctor project-level settings - Detects plugins/hooks/MCP in .claude/settings.json",
|
||||
"FIX: Contributor routing - bd init --contributor correctly sets up routing (#1088)",
|
||||
"CHANGED: Release workflow modernized - bump-version.sh replaced with molecule pointer",
|
||||
"DOCS: EXTENDING.md deprecated - Custom SQLite tables approach deprecated for Dolt migration",
|
||||
},
|
||||
},
|
||||
{
|
||||
Version: "0.47.1",
|
||||
Date: "2026-01-12",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) post-checkout hook - thin shim
|
||||
#
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) post-merge hook - thin shim
|
||||
#
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) pre-commit hook - thin shim
|
||||
#
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# bd-shim v1
|
||||
# bd-hooks-version: 0.47.1
|
||||
# bd-hooks-version: 0.47.2
|
||||
#
|
||||
# bd (beads) pre-push hook - thin shim
|
||||
#
|
||||
|
||||
@@ -14,7 +14,7 @@ import (
|
||||
|
||||
var (
|
||||
// Version is the current version of bd (overridden by ldflags at build time)
|
||||
Version = "0.47.1"
|
||||
Version = "0.47.2"
|
||||
// Build can be set via ldflags at compile time
|
||||
Build = "dev"
|
||||
// Commit and branch the git revision the binary was built from (optional ldflag)
|
||||
|
||||
Reference in New Issue
Block a user