diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f87262a..bc7e4aa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.15.0" + ".": "0.16.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8471ccc..69f6288 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.16.0](https://github.com/aigengame/cli-agentic-workflow/compare/v0.15.0...v0.16.0) (2026-06-17) + + +### Features + +* **#10:** Wave A — human_gate node kind + await parking ([#120](https://github.com/aigengame/cli-agentic-workflow/issues/120)) ([1270774](https://github.com/aigengame/cli-agentic-workflow/commit/12707742079a95f515b3c51747830978578c223f)) +* **#10:** Wave B — approve / reject a parked gate via caw resume ([#122](https://github.com/aigengame/cli-agentic-workflow/issues/122)) ([5c8e9fe](https://github.com/aigengame/cli-agentic-workflow/commit/5c8e9febd0dea759f62141f3c814db4e1bffa8eb)) +* **#10:** Wave C — multi-gate resume, TTY inline confirm, parked-run e2e ([#123](https://github.com/aigengame/cli-agentic-workflow/issues/123)) ([f079945](https://github.com/aigengame/cli-agentic-workflow/commit/f0799457ac0a80e72a7552bf2d3e199374b6097e)) + ## [0.15.0](https://github.com/aigengame/cli-agentic-workflow/compare/v0.14.0...v0.15.0) (2026-06-17) diff --git a/pyproject.toml b/pyproject.toml index c02e532..cd83c81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "caw" -version = "0.15.0" +version = "0.16.0" description = "A lightweight, local-first workflow kernel and CLI that composes external agent CLI entrypoints into explicit, inspectable, repeatable workflow runs." readme = "README.md" requires-python = ">=3.12" diff --git a/src/caw/__init__.py b/src/caw/__init__.py index b9561d5..35e36d8 100644 --- a/src/caw/__init__.py +++ b/src/caw/__init__.py @@ -2,4 +2,4 @@ # release-please is the single version authority: it bumps this literal together with # pyproject.toml on the Release PR, and nothing here computes a version (ADR 0005). -__version__ = "0.15.0" +__version__ = "0.16.0" diff --git a/uv.lock b/uv.lock index aeffe4a..afc2b64 100644 --- a/uv.lock +++ b/uv.lock @@ -75,7 +75,7 @@ wheels = [ [[package]] name = "caw" -version = "0.15.0" +version = "0.16.0" source = { editable = "." } dependencies = [ { name = "jsonschema" },