From 11b523b99aa7db13ddd82a4c73d2b7db784b63a3 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Tue, 30 Jun 2026 17:01:26 +0000 Subject: [PATCH 1/3] chore: release 0.2.0 Co-authored-by: c1-squire-dev[bot] --- crates/agent-tui/CHANGELOG.md | 2 +- crates/agent-tui/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/agent-tui/CHANGELOG.md b/crates/agent-tui/CHANGELOG.md index 8a26623..72c4889 100644 --- a/crates/agent-tui/CHANGELOG.md +++ b/crates/agent-tui/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - *(adapters)* Manifest v2 durable refs, dynamic row selectors, and signal refs for agents driving agents. -## [0.1.12](https://github.com/ConductorOne/agent-tui/compare/v0.1.11...v0.1.12) - 2026-06-13 +## [0.2.0](https://github.com/ConductorOne/agent-tui/compare/v0.1.11...v0.2.0) - 2026-06-13 ### Fixed diff --git a/crates/agent-tui/Cargo.toml b/crates/agent-tui/Cargo.toml index cdba100..9ceb6c0 100644 --- a/crates/agent-tui/Cargo.toml +++ b/crates/agent-tui/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "agent-tui" description = "A headless terminal browser for LLM agents — single static binary CLI + daemon." -version.workspace = true +version = "0.2.0" edition.workspace = true rust-version.workspace = true license.workspace = true From 67fa5eabf9f2842cbd07b78f424d3b2bc935ecd1 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Tue, 30 Jun 2026 17:08:39 +0000 Subject: [PATCH 2/3] chore: update lockfile for release Co-authored-by: c1-squire-dev[bot] --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 2b2ee54..5bc4455 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "agent-tui" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-adapter", "agent-tui-daemon", From eb7e8444a97b156a23fa8439eb32a4769cc89838 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Tue, 30 Jun 2026 17:20:17 +0000 Subject: [PATCH 3/3] chore: sync 0.2.0 release notes Co-authored-by: c1-squire-dev[bot] --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 16 ++++++++-------- crates/agent-tui/CHANGELOG.md | 27 ++++++++++++++++++++++++++- crates/agent-tui/Cargo.toml | 2 +- 4 files changed, 44 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5bc4455..bdc61d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "agent-tui-adapter" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-engine", "agent-tui-protocol", @@ -54,7 +54,7 @@ dependencies = [ [[package]] name = "agent-tui-daemon" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-adapter", "agent-tui-engine", @@ -90,7 +90,7 @@ dependencies = [ [[package]] name = "agent-tui-engine" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-protocol", "hex", @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "agent-tui-engine-alacritty" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-engine", "agent-tui-protocol", @@ -114,7 +114,7 @@ dependencies = [ [[package]] name = "agent-tui-engine-wezterm" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-engine", "agent-tui-protocol", @@ -124,7 +124,7 @@ dependencies = [ [[package]] name = "agent-tui-integration" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-protocol", "anyhow", @@ -141,7 +141,7 @@ dependencies = [ [[package]] name = "agent-tui-protocol" -version = "0.1.12" +version = "0.2.0" dependencies = [ "chrono", "proptest", @@ -154,7 +154,7 @@ dependencies = [ [[package]] name = "agent-tui-recorder" -version = "0.1.12" +version = "0.2.0" dependencies = [ "agent-tui-protocol", "anyhow", @@ -3707,7 +3707,7 @@ dependencies = [ [[package]] name = "xtask" -version = "0.1.12" +version = "0.2.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index c8cfd7d..538051a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ ] [workspace.package] -version = "0.1.12" +version = "0.2.0" edition = "2024" rust-version = "1.85" license = "Apache-2.0" @@ -38,13 +38,13 @@ multiple_crate_versions = "allow" [workspace.dependencies] # In-workspace crates, all pinned to the workspace version. -agent-tui-protocol = { path = "crates/agent-tui-protocol", version = "0.1.0" } -agent-tui-engine = { path = "crates/agent-tui-engine", version = "0.1.0" } -agent-tui-engine-wezterm = { path = "crates/agent-tui-engine-wezterm", version = "0.1.0" } -agent-tui-engine-alacritty = { path = "crates/agent-tui-engine-alacritty", version = "0.1.0" } -agent-tui-daemon = { path = "crates/agent-tui-daemon", version = "0.1.0" } -agent-tui-recorder = { path = "crates/agent-tui-recorder", version = "0.1.0" } -agent-tui-adapter = { path = "crates/agent-tui-adapter", version = "0.1.0" } +agent-tui-protocol = { path = "crates/agent-tui-protocol", version = "0.2.0" } +agent-tui-engine = { path = "crates/agent-tui-engine", version = "0.2.0" } +agent-tui-engine-wezterm = { path = "crates/agent-tui-engine-wezterm", version = "0.2.0" } +agent-tui-engine-alacritty = { path = "crates/agent-tui-engine-alacritty", version = "0.2.0" } +agent-tui-daemon = { path = "crates/agent-tui-daemon", version = "0.2.0" } +agent-tui-recorder = { path = "crates/agent-tui-recorder", version = "0.2.0" } +agent-tui-adapter = { path = "crates/agent-tui-adapter", version = "0.2.0" } # Async runtime + IO. Pinned to a single tokio feature set we add to as needed. tokio = { version = "1.43", features = [ diff --git a/crates/agent-tui/CHANGELOG.md b/crates/agent-tui/CHANGELOG.md index 72c4889..81c3309 100644 --- a/crates/agent-tui/CHANGELOG.md +++ b/crates/agent-tui/CHANGELOG.md @@ -7,11 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/ConductorOne/agent-tui/compare/v0.1.12...v0.2.0) - 2026-06-30 + ### Added +- Initial public release +- *(snapshot)* Ship-nice PNG renders — palette, chrome frame, attrs, restyled annotate +- *(cli)* Add shell completions and man-page generation - *(adapters)* Manifest v2 durable refs, dynamic row selectors, and signal refs for agents driving agents. -## [0.2.0](https://github.com/ConductorOne/agent-tui/compare/v0.1.11...v0.2.0) - 2026-06-13 +### Documentation + +- *(ai-cli)* Narrow live adapter proof boundary ([#111](https://github.com/ConductorOne/agent-tui/pull/111)) + +### Fixed + +- *(release)* Configure git-cliff changelog generation (dedup + skip merge/release noise) +- *(release)* Correct off-by-one version attribution + doubled Unreleased in CHANGELOG + +### Other + +- *(launch)* Prepare public release readiness ([#105](https://github.com/ConductorOne/agent-tui/pull/105)) +- Add manifest v2 agent control refs +- Harden daemon trust boundaries +- Harden spawn allowlist path matching + +### Testing + +- *(ai-cli)* Cover AI SDK harness CLI names ([#109](https://github.com/ConductorOne/agent-tui/pull/109)) + +## [0.1.12](https://github.com/ConductorOne/agent-tui/compare/v0.1.11...v0.1.12) - 2026-06-13 ### Fixed diff --git a/crates/agent-tui/Cargo.toml b/crates/agent-tui/Cargo.toml index 9ceb6c0..cdba100 100644 --- a/crates/agent-tui/Cargo.toml +++ b/crates/agent-tui/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "agent-tui" description = "A headless terminal browser for LLM agents — single static binary CLI + daemon." -version = "0.2.0" +version.workspace = true edition.workspace = true rust-version.workspace = true license.workspace = true