chore: Bump version to 0.39.1

This commit is contained in:
Steve Yegge
2025-12-27 22:33:05 -08:00
parent ab3feda007
commit d08c877a33
12 changed files with 65 additions and 10 deletions

View File

@@ -296,6 +296,20 @@ type VersionChange struct {
// versionChanges contains agent-actionable changes for recent versions
var versionChanges = []VersionChange{
{
Version: "0.39.1",
Date: "2025-12-27",
Changes: []string{
"NEW: bd where command (bd-8x43) - Show active beads location after following redirects",
"NEW: --parent flag for bd update (bd-cj2e) - Reparent issues between epics",
"NEW: Redirect info in bd prime (bd-kblo) - Shows when database is redirected",
"FIX: bd doctor follows redirects (bd-tvus) - Gas Town compatibility",
"FIX: Remove 8-char prefix limit (GH#770) - bd rename-prefix allows longer prefixes",
"CHANGED: Git context consolidation (bd-qph3) - Internal refactor for efficiency",
"DOCS: Database Redirects section (bd-8x43) - ADVANCED.md documentation",
"DOCS: Community Tools update (GH#771) - Added opencode-beads to README",
},
},
{
Version: "0.39.0",
Date: "2025-12-27",

View File

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

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# bd-shim v1
# bd-hooks-version: 0.39.0
# bd-hooks-version: 0.39.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.39.0"
Version = "0.39.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)