chore: Bump version to 0.47.1

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
beads/crew/emma
2026-01-12 03:21:12 -08:00
committed by Steve Yegge
parent 4dae3fa338
commit 279192c5fb
11 changed files with 74 additions and 11 deletions

View File

@@ -296,6 +296,21 @@ type VersionChange struct {
// versionChanges contains agent-actionable changes for recent versions
var versionChanges = []VersionChange{
{
Version: "0.47.1",
Date: "2026-01-12",
Changes: []string{
"NEW: bd list --ready flag - Show only issues with no blockers (bd-ihu31)",
"NEW: Markdown rendering in comments - Enhanced display for notes (#1019)",
"FIX: Nil pointer in wisp create - Prevent panic in molecule creation",
"FIX: Route prefix for rig issues - Use correct prefix when creating (#1028)",
"FIX: Duplicate merge target - Prefer issues with children/deps (GH#1022)",
"FIX: SQLite cache rebuild after rename-prefix (GH#1016)",
"FIX: MCP custom types - Support non-built-in types/statuses (#1023)",
"FIX: Hyphenated prefix validation - Support hyphens in prefixes (#1013)",
"FIX: Git worktree initialization - Prevent bd init in worktrees (#1026)",
},
},
{
Version: "0.47.0",
Date: "2026-01-11",

View File

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

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env sh
# bd-shim v1
# bd-hooks-version: 0.47.0
# bd-hooks-version: 0.47.1
#
# 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.47.0"
Version = "0.47.1"
// Build can be set via ldflags at compile time
Build = "dev"
// Commit and branch the git revision the binary was built from (optional ldflag)