From 3d2554839128f0aaa653f37b2b0f5b70002425e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 20:33:22 +0000 Subject: [PATCH] chore(main): release 0.17.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c485ae2..f082b18 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.16.0" + ".": "0.17.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e044c48..9954dd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.17.0](https://github.com/githubnext/ado-aw/compare/v0.16.0...v0.17.0) (2026-04-22) + + +### ⚠ BREAKING CHANGES + +* The `run` subcommand is removed. See docs/local-development.md for manual local development instructions. +* The engine front matter format changed from model names (engine: claude-opus-4.5) to engine identifiers (engine: copilot). Model is now a sub-field in the object form (engine: { id: copilot, model: ... }). + +### Features + +* add cyclomatic complexity reducer agentic workflow ([#298](https://github.com/githubnext/ado-aw/issues/298)) ([1066a2f](https://github.com/githubnext/ado-aw/commit/1066a2fee0c30991a50bf6a50b221308b43ee6a8)) +* align engine front matter with gh-aw and hook up Engine enum ([#286](https://github.com/githubnext/ado-aw/issues/286)) ([f90bd81](https://github.com/githubnext/ado-aw/commit/f90bd81c5e6eb83bdf595332a493da41b29e4fea)) +* remove `run` subcommand ([#306](https://github.com/githubnext/ado-aw/issues/306)) ([a71ed16](https://github.com/githubnext/ado-aw/commit/a71ed16db5a472e7727c0f6637cfd88b7097eef8)) + + +### Bug Fixes + +* prefix agent filename with ado to distinguish from gh-aw ([#299](https://github.com/githubnext/ado-aw/issues/299)) ([b3ecca7](https://github.com/githubnext/ado-aw/commit/b3ecca7ee241d4798ce91e815cf281d28f4e15cd)) + ## [0.16.0](https://github.com/githubnext/ado-aw/compare/v0.15.0...v0.16.0) (2026-04-21) diff --git a/Cargo.lock b/Cargo.lock index b758f26..cbc3b1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "ado-aw" -version = "0.16.0" +version = "0.17.0" dependencies = [ "ado-aw-derive", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index db219ee..42e0940 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ado-aw" -version = "0.16.0" +version = "0.17.0" edition = "2024" [dependencies]