From 0006aa365f0eb99a0f78642666a5618cf4582126 Mon Sep 17 00:00:00 2001 From: wittekin <6079900+wittekin@users.noreply.github.com> Date: Sat, 7 Mar 2026 17:37:02 -0800 Subject: [PATCH 1/2] Add 0.4.1 changelog entry Summarize features and fixes shipped since 0.4.0: --worktrees MCP support, --dry-run/--status provider info, --prepare-release COMPLETED_TASKS fix, mypy exclusions, eval lint exit-code fix, and --split-task remote provider graceful error. Generated with millstone orchestrator --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c34ace..a84f828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project are documented in this file. The format is based on Keep a Changelog and this project follows Semantic Versioning. +## [0.4.1] - 2026-03-07 + +### Added +- `--worktrees` support for MCP tasklist providers (GitHub Issues, Linear, Jira backends) (#46). + +### Fixed +- Show provider info in `--dry-run` and `--status` with remote backends instead of missing file path (#44). +- Populate `{{COMPLETED_TASKS}}` with real content in `--prepare-release` instead of literal placeholder (#48). +- Exclude `build/` and `tests/` from mypy to eliminate false-positive duplicate-module errors in `--eval` (#50). +- Use exit code to determine lint error count in `--eval`, reporting correct `lint: 1.00 (errors=0)` on clean codebase (#51). +- Graceful error for `--split-task` with remote MCP providers instead of crashing (#53). + ## [0.4.0] - 2026-03-07 ### Added From 86d50e1f3dc7fd4f893f2769a027f41185f00a51 Mon Sep 17 00:00:00 2001 From: wittekin <6079900+wittekin@users.noreply.github.com> Date: Sat, 7 Mar 2026 17:37:19 -0800 Subject: [PATCH 2/2] chore: bump version to 0.4.1 Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 847b3c9..ad2a9d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "millstone" -version = "0.4.0" +version = "0.4.1" description = "Orchestrator for agentic coding tools" readme = "README.md" requires-python = ">=3.10"