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 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"