Skip to content

Commit d78cbe4

Browse files
steveyeggeclaude
andcommitted
chore: bump version to 0.33.0
Ephemeral molecules release: - bd mol spawn creates ephemeral issues by default - Ephemeral issues never export to JSONL - bd mol squash with --summary for agent summaries 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 2b87a55 commit d78cbe4

File tree

13 files changed

+24
-10
lines changed

13 files changed

+24
-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.32.1"
12+
"version": "0.33.0"
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.32.1",
4+
"version": "0.33.0",
55
"author": {
66
"name": "Steve Yegge",
77
"url": "https://github.com/steveyegge"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.33.0] - 2025-12-21
11+
1012
### Added
1113

1214
- **Ephemeral molecules** (bd-2vh3) - Spawn molecules as ephemeral by default

bd_new

30 MB
Binary file not shown.

cmd/bd/info.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,18 @@ type VersionChange struct {
288288

289289
// versionChanges contains agent-actionable changes for recent versions
290290
var versionChanges = []VersionChange{
291+
{
292+
Version: "0.33.0",
293+
Date: "2025-12-21",
294+
Changes: []string{
295+
"NEW: Ephemeral molecules (bd-2vh3) - bd mol spawn creates ephemeral issues by default",
296+
"NEW: Ephemeral issues live only in SQLite, never export to JSONL (prevents zombie resurrection)",
297+
"NEW: --persistent flag on bd mol spawn to opt out of ephemeral spawning",
298+
"NEW: bd mol squash compresses ephemeral children into digest issue",
299+
"NEW: --summary flag on bd mol squash for agent-provided AI summaries",
300+
"FIX: DeleteIssue now cascades to comments table (bd-687g)",
301+
},
302+
},
291303
{
292304
Version: "0.32.1",
293305
Date: "2025-12-21",

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.32.1
3+
# bd-hooks-version: 0.33.0
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.32.1
3+
# bd-hooks-version: 0.33.0
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.32.1
3+
# bd-hooks-version: 0.33.0
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.32.1
3+
# bd-hooks-version: 0.33.0
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.32.1"
17+
Version = "0.33.0"
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)

0 commit comments

Comments
 (0)