Skip to content

Commit 48bfaaa

Browse files
committed
fix(release): remove verify-cgo hook from CGO_ENABLED=0 builds
v0.56.0 release failed because verify-cgo.sh was added to darwin and freebsd builds which intentionally use CGO_ENABLED=0. Bump to v0.56.1. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Executed-By: beads/crew/emma Rig: beads Role: crew
1 parent 9da9039 commit 48bfaaa

File tree

14 files changed

+24
-20
lines changed

14 files changed

+24
-20
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": "./claude-plugin",
1111
"description": "AI-supervised issue tracker for coding workflows",
12-
"version": "0.56.0"
12+
"version": "0.56.1"
1313
}
1414
]
1515
}

.goreleaser.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ builds:
9191
- -X main.Build={{.ShortCommit}}
9292
- -X main.Commit={{.Commit}}
9393
- -X main.Branch={{.Branch}}
94-
hooks:
95-
post:
96-
- ./scripts/verify-cgo.sh "{{ .Path }}"
9794

9895
- id: bd-darwin-arm64
9996
main: ./cmd/bd
@@ -113,9 +110,6 @@ builds:
113110
- -X main.Build={{.ShortCommit}}
114111
- -X main.Commit={{.Commit}}
115112
- -X main.Branch={{.Branch}}
116-
hooks:
117-
post:
118-
- ./scripts/verify-cgo.sh "{{ .Path }}"
119113

120114
- id: bd-windows-amd64
121115
main: ./cmd/bd
@@ -187,9 +181,6 @@ builds:
187181
- -X main.Build={{.ShortCommit}}
188182
- -X main.Commit={{.Commit}}
189183
- -X main.Branch={{.Branch}}
190-
hooks:
191-
post:
192-
- ./scripts/verify-cgo.sh "{{ .Path }}"
193184

194185
archives:
195186
- id: bd-archive

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.56.1] - 2026-02-23
11+
12+
### Fixed
13+
14+
- **Release CI** — remove `verify-cgo.sh` post-hook from darwin and freebsd builds which intentionally use `CGO_ENABLED=0` (cross-compilation without CGO)
15+
1016
## [0.56.0] - 2026-02-23
1117

1218
### Removed

claude-plugin/.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.56.0",
4+
"version": "0.56.1",
55
"author": {
66
"name": "Steve Yegge",
77
"url": "https://github.com/steveyegge"

cmd/bd/info.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,13 @@ type VersionChange struct {
209209

210210
// versionChanges contains agent-actionable changes for recent versions
211211
var versionChanges = []VersionChange{
212+
{
213+
Version: "0.56.1",
214+
Date: "2026-02-23",
215+
Changes: []string{
216+
"FIX: Release CI — remove verify-cgo hook from CGO_ENABLED=0 builds (darwin, freebsd)",
217+
},
218+
},
212219
{
213220
Version: "0.56.0",
214221
Date: "2026-02-23",

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
#!/usr/bin/env sh
22
# bd-shim v1
3-
# bd-hooks-version: 0.56.0
3+
# bd-hooks-version: 0.56.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
#!/usr/bin/env sh
22
# bd-shim v1
3-
# bd-hooks-version: 0.56.0
3+
# bd-hooks-version: 0.56.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
#!/usr/bin/env sh
22
# bd-shim v2
3-
# bd-hooks-version: 0.56.0
3+
# bd-hooks-version: 0.56.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
#!/usr/bin/env sh
22
# bd-shim v1
3-
# bd-hooks-version: 0.56.0
3+
# bd-hooks-version: 0.56.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
@@ -12,7 +12,7 @@ import (
1212

1313
var (
1414
// Version is the current version of bd (overridden by ldflags at build time)
15-
Version = "0.56.0"
15+
Version = "0.56.1"
1616
// Build can be set via ldflags at compile time
1717
Build = "dev"
1818
// Commit and branch the git revision the binary was built from (optional ldflag)

0 commit comments

Comments
 (0)