Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 = [
Expand Down
25 changes: 25 additions & 0 deletions crates/agent-tui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading