diff --git a/Cargo.lock b/Cargo.lock index 2b2ee54..bdc61d7 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", @@ -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 8a26623..81c3309 100644 --- a/crates/agent-tui/CHANGELOG.md +++ b/crates/agent-tui/CHANGELOG.md @@ -7,10 +7,35 @@ 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. +### 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