Skip to content

Commit d08c877

Browse files
committed
chore: Bump version to 0.39.1
1 parent ab3feda commit d08c877

File tree

12 files changed

+65
-10
lines changed

12 files changed

+65
-10
lines changed

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "beads",
1010
"source": "./",
1111
"description": "AI-supervised issue tracker for coding workflows",
12-
"version": "0.39.0"
12+
"version": "0.39.1"
1313
}
1414
]
1515
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "beads",
33
"description": "AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.",
4-
"version": "0.39.0",
4+
"version": "0.39.1",
55
"author": {
66
"name": "Steve Yegge",
77
"url": "https://github.com/steveyegge"

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,47 @@ All notable changes to the beads project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.39.1] - 2025-12-27
9+
10+
### Added
11+
12+
- **`bd where` command** (bd-8x43) - Show active beads location
13+
- Displays the resolved database path after following redirects
14+
- Helpful for debugging multi-rig setups
15+
16+
- **`--parent` flag for `bd update`** (bd-cj2e) - Reparent issues
17+
- Move issues between epics with `bd update <id> --parent=<new-parent>`
18+
- Supports clearing parent with `--parent=none`
19+
20+
- **Redirect info in `bd prime`** (bd-kblo) - Gas Town support
21+
- Shows when database is redirected to another location
22+
- Improves visibility into routing behavior
23+
24+
### Fixed
25+
26+
- **Doctor follows redirects** (bd-tvus) - Gas Town compatibility
27+
- `bd doctor` now correctly follows database redirects
28+
- Prevents false negatives when running from rig roots
29+
30+
- **Remove 8-char prefix limit** (GH#770) - `bd rename-prefix`
31+
- Removed arbitrary length restriction on issue prefixes
32+
- Allows longer, more descriptive prefixes
33+
34+
### Changed
35+
36+
- **Git context consolidation** (bd-qph3) - Internal refactor
37+
- Unified git context into single cached struct
38+
- Reduces redundant git operations
39+
40+
### Documentation
41+
42+
- **Database Redirects section** (bd-8x43) - ADVANCED.md
43+
- Comprehensive documentation for redirect feature
44+
- Explains Gas Town integration patterns
45+
46+
- **Community Tools update** (GH#771) - README.md
47+
- Added opencode-beads to community tools list
48+
849
## [0.39.0] - 2025-12-27
950

1051
### Added

cmd/bd/info.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,20 @@ type VersionChange struct {
296296

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

cmd/bd/templates/hooks/post-checkout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# bd-shim v1
3-
# bd-hooks-version: 0.39.0
3+
# bd-hooks-version: 0.39.1
44
#
55
# bd (beads) post-checkout hook - thin shim
66
#

cmd/bd/templates/hooks/post-merge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# bd-shim v1
3-
# bd-hooks-version: 0.39.0
3+
# bd-hooks-version: 0.39.1
44
#
55
# bd (beads) post-merge hook - thin shim
66
#

cmd/bd/templates/hooks/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# bd-shim v1
3-
# bd-hooks-version: 0.39.0
3+
# bd-hooks-version: 0.39.1
44
#
55
# bd (beads) pre-commit hook - thin shim
66
#

cmd/bd/templates/hooks/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# bd-shim v1
3-
# bd-hooks-version: 0.39.0
3+
# bd-hooks-version: 0.39.1
44
#
55
# bd (beads) pre-push hook - thin shim
66
#

cmd/bd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
var (
1616
// Version is the current version of bd (overridden by ldflags at build time)
17-
Version = "0.39.0"
17+
Version = "0.39.1"
1818
// Build can be set via ldflags at compile time
1919
Build = "dev"
2020
// Commit and branch the git revision the binary was built from (optional ldflag)

integrations/beads-mcp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "beads-mcp"
3-
version = "0.39.0"
3+
version = "0.39.1"
44
description = "MCP server for beads issue tracker."
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)