Skip to content

Commit 4e8924c

Browse files
steveyeggeclaude
andcommitted
chore: bump version to 0.33.1
Breaking changes: - Ephemeral β†’ Wisp rename (JSON field, CLI flag) Fixes: - Lint error in mail.go (nosec for mail delegate) πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 1e22cd0 commit 4e8924c

File tree

12 files changed

+32
-10
lines changed

12 files changed

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

β€ŽCHANGELOG.mdβ€Ž

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

88
## [Unreleased]
99

10+
## [0.33.1] - 2025-12-21
11+
12+
### Changed
13+
14+
- **Ephemeral β†’ Wisp rename** - Aligns with Steam Engine metaphor (wisps = ephemeral vapor)
15+
- JSON field changed from `ephemeral` to `wisp` (breaking change for API consumers)
16+
- CLI flag changed from `--ephemeral` to `--wisp` on `bd cleanup`
17+
- SQLite column remains `ephemeral` (no migration needed)
18+
19+
### Fixed
20+
21+
- **Lint error in mail.go** - Added nosec directive for mail delegate exec.Command
22+
1023
## [0.33.0] - 2025-12-21
1124

1225
### Added

β€Žcmd/bd/info.goβ€Ž

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

289289
// versionChanges contains agent-actionable changes for recent versions
290290
var versionChanges = []VersionChange{
291+
{
292+
Version: "0.33.1",
293+
Date: "2025-12-21",
294+
Changes: []string{
295+
"BREAKING: Ephemeral β†’ Wisp rename - JSON field changed from 'ephemeral' to 'wisp'",
296+
"BREAKING: CLI flag changed from --ephemeral to --wisp (bd cleanup)",
297+
"NOTE: SQLite column remains 'ephemeral' (no migration needed)",
298+
},
299+
},
291300
{
292301
Version: "0.33.0",
293302
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.33.0
3+
# bd-hooks-version: 0.33.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.33.0
3+
# bd-hooks-version: 0.33.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.33.0
3+
# bd-hooks-version: 0.33.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.33.0
3+
# bd-hooks-version: 0.33.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.33.0"
17+
Version = "0.33.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.33.0"
3+
version = "0.33.1"
44
description = "MCP server for beads issue tracker."
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
Β (0)