chore: Bump version to 0.39.1
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
"name": "beads",
|
||||
"source": "./",
|
||||
"description": "AI-supervised issue tracker for coding workflows",
|
||||
"version": "0.39.0"
|
||||
"version": "0.39.1"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "beads",
|
||||
"description": "AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.",
|
||||
"version": "0.39.0",
|
||||
"version": "0.39.1",
|
||||
"author": {
|
||||
"name": "Steve Yegge",
|
||||
"url": "https://github.com/steveyegge"
|
||||
|
||||
@@ -5,6 +5,47 @@ All notable changes to the beads project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.39.1] - 2025-12-27
|
||||
|
||||
### Added
|
||||
|
||||
- **`bd where` command** (bd-8x43) - Show active beads location
|
||||
- Displays the resolved database path after following redirects
|
||||
- Helpful for debugging multi-rig setups
|
||||
|
||||
- **`--parent` flag for `bd update`** (bd-cj2e) - Reparent issues
|
||||
- Move issues between epics with `bd update <id> --parent=<new-parent>`
|
||||
- Supports clearing parent with `--parent=none`
|
||||
|
||||
- **Redirect info in `bd prime`** (bd-kblo) - Gas Town support
|
||||
- Shows when database is redirected to another location
|
||||
- Improves visibility into routing behavior
|
||||
|
||||
### Fixed
|
||||
|
||||
- **Doctor follows redirects** (bd-tvus) - Gas Town compatibility
|
||||
- `bd doctor` now correctly follows database redirects
|
||||
- Prevents false negatives when running from rig roots
|
||||
|
||||
- **Remove 8-char prefix limit** (GH#770) - `bd rename-prefix`
|
||||
- Removed arbitrary length restriction on issue prefixes
|
||||
- Allows longer, more descriptive prefixes
|
||||
|
||||
### Changed
|
||||
|
||||
- **Git context consolidation** (bd-qph3) - Internal refactor
|
||||
- Unified git context into single cached struct
|
||||
- Reduces redundant git operations
|
||||
|
||||
### Documentation
|
||||
|
||||
- **Database Redirects section** (bd-8x43) - ADVANCED.md
|
||||
- Comprehensive documentation for redirect feature
|
||||
- Explains Gas Town integration patterns
|
||||
|
||||
- **Community Tools update** (GH#771) - README.md
|
||||
- Added opencode-beads to community tools list
|
||||
|
||||
## [0.39.0] - 2025-12-27
|
||||
|
||||
### Added
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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
|
||||
#
|
||||
|
||||
@@ -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
|
||||
#
|
||||
|
||||
@@ -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
|
||||
#
|
||||
|
||||
@@ -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
|
||||
#
|
||||
|
||||
+1
-1
@@ -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)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "beads-mcp"
|
||||
version = "0.39.0"
|
||||
version = "0.39.1"
|
||||
description = "MCP server for beads issue tracker."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
||||
@@ -4,4 +4,4 @@ This package provides an MCP (Model Context Protocol) server that exposes
|
||||
beads (bd) issue tracker functionality to MCP Clients.
|
||||
"""
|
||||
|
||||
__version__ = "0.39.0"
|
||||
__version__ = "0.39.1"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@beads/bd",
|
||||
"version": "0.39.0",
|
||||
"version": "0.39.1",
|
||||
"description": "Beads issue tracker - lightweight memory system for coding agents with native binary support",
|
||||
"main": "bin/bd.js",
|
||||
"bin": {
|
||||
|
||||
Reference in New Issue
Block a user