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
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.1.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.85"
license = "MIT"
Expand All @@ -18,8 +18,8 @@ keywords = ["codeoid", "claude", "tui", "ai-agents", "ratatui"]

[workspace.dependencies]
# Workspace-internal
codeoid-protocol = { path = "crates/codeoid-protocol", version = "0.1.1" }
codeoid-client = { path = "crates/codeoid-client", version = "0.1.1" }
codeoid-protocol = { path = "crates/codeoid-protocol", version = "0.2.0" }
codeoid-client = { path = "crates/codeoid-client", version = "0.2.0" }

# Async runtime
tokio = { version = "1.41", features = ["macros", "rt-multi-thread", "sync", "time", "signal", "io-std", "io-util"] }
Expand Down
14 changes: 14 additions & 0 deletions crates/codeoid-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/saucam/codeoid-ui/compare/codeoid-client-v0.1.1...codeoid-client-v0.2.0) - 2026-07-13

### Added

- adopt scrollback.paging β€” tail-first attach + scroll-up history backfill ([#21](https://github.com/saucam/codeoid-ui/pull/21))
- surface session fork in the TUI (/fork [backend]) ([#17](https://github.com/saucam/codeoid-ui/pull/17))
- multi-provider sessions β€” /provider switch, /new --provider, backend tags ([#15](https://github.com/saucam/codeoid-ui/pull/15))
- provider extension surface β€” dialogs, dynamic commands, rich parts rendering ([#14](https://github.com/saucam/codeoid-ui/pull/14))

### Fixed

- model catalog follows the session's backend (TUI) ([#22](https://github.com/saucam/codeoid-ui/pull/22))
- never wedge or eat input β€” request timeouts, prompt restore, destroy confirm ([#18](https://github.com/saucam/codeoid-ui/pull/18))

## [0.1.1](https://github.com/saucam/codeoid-ui/compare/codeoid-client-v0.1.0...codeoid-client-v0.1.1) - 2026-07-02

### Other
Expand Down
15 changes: 15 additions & 0 deletions crates/codeoid-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/saucam/codeoid-ui/compare/codeoid-protocol-v0.1.1...codeoid-protocol-v0.2.0) - 2026-07-13

### Added

- show the isolated-worktree branch in the TUI session title ([#24](https://github.com/saucam/codeoid-ui/pull/24))
- show fork lineage in the TUI session title ([#23](https://github.com/saucam/codeoid-ui/pull/23))
- adopt scrollback.paging β€” tail-first attach + scroll-up history backfill ([#21](https://github.com/saucam/codeoid-ui/pull/21))
- surface session fork in the TUI (/fork [backend]) ([#17](https://github.com/saucam/codeoid-ui/pull/17))
- multi-provider sessions β€” /provider switch, /new --provider, backend tags ([#15](https://github.com/saucam/codeoid-ui/pull/15))
- provider extension surface β€” dialogs, dynamic commands, rich parts rendering ([#14](https://github.com/saucam/codeoid-ui/pull/14))

### Fixed

- model catalog follows the session's backend (TUI) ([#22](https://github.com/saucam/codeoid-ui/pull/22))
17 changes: 17 additions & 0 deletions crates/codeoid-tui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/saucam/codeoid-ui/compare/v0.1.1...v0.2.0) - 2026-07-13

### Added

- show the isolated-worktree branch in the TUI session title ([#24](https://github.com/saucam/codeoid-ui/pull/24))
- show fork lineage in the TUI session title ([#23](https://github.com/saucam/codeoid-ui/pull/23))
- adopt scrollback.paging β€” tail-first attach + scroll-up history backfill ([#21](https://github.com/saucam/codeoid-ui/pull/21))
- surface session fork in the TUI (/fork [backend]) ([#17](https://github.com/saucam/codeoid-ui/pull/17))
- multi-provider sessions β€” /provider switch, /new --provider, backend tags ([#15](https://github.com/saucam/codeoid-ui/pull/15))
- provider extension surface β€” dialogs, dynamic commands, rich parts rendering ([#14](https://github.com/saucam/codeoid-ui/pull/14))

### Fixed

- model catalog follows the session's backend (TUI) ([#22](https://github.com/saucam/codeoid-ui/pull/22))
- scrollback perf + memory β€” event coalescing, scroll clamp, bounded parses, store pruning ([#19](https://github.com/saucam/codeoid-ui/pull/19))
- never wedge or eat input β€” request timeouts, prompt restore, destroy confirm ([#18](https://github.com/saucam/codeoid-ui/pull/18))

## [0.1.1](https://github.com/saucam/codeoid-ui/compare/v0.1.0...v0.1.1) - 2026-07-02

### Added
Expand Down
Loading