diff --git a/Cargo.lock b/Cargo.lock index 133681f..b508f13 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,7 +224,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codeoid-client" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "codeoid-protocol", @@ -243,7 +243,7 @@ dependencies = [ [[package]] name = "codeoid-protocol" -version = "0.1.0" +version = "0.1.1" dependencies = [ "serde", "serde_json", @@ -251,7 +251,7 @@ dependencies = [ [[package]] name = "codeoid-tui" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index f6b764d..33f7bb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.85" license = "MIT" @@ -18,8 +18,8 @@ keywords = ["codeoid", "claude", "tui", "ai-agents", "ratatui"] [workspace.dependencies] # Workspace-internal -codeoid-protocol = { path = "crates/codeoid-protocol", version = "0.1.0" } -codeoid-client = { path = "crates/codeoid-client", version = "0.1.0" } +codeoid-protocol = { path = "crates/codeoid-protocol", version = "0.1.1" } +codeoid-client = { path = "crates/codeoid-client", version = "0.1.1" } # Async runtime tokio = { version = "1.41", features = ["macros", "rt-multi-thread", "sync", "time", "signal", "io-std", "io-util"] } diff --git a/crates/codeoid-client/CHANGELOG.md b/crates/codeoid-client/CHANGELOG.md index 9085a2a..e3ecb08 100644 --- a/crates/codeoid-client/CHANGELOG.md +++ b/crates/codeoid-client/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/saucam/codeoid-ui/compare/codeoid-client-v0.1.0...codeoid-client-v0.1.1) - 2026-07-02 + +### Other + +- release v0.1.0 ([#7](https://github.com/saucam/codeoid-ui/pull/7)) + ## [0.1.0](https://github.com/saucam/codeoid-ui/releases/tag/codeoid-client-v0.1.0) - 2026-06-23 ### Added diff --git a/crates/codeoid-protocol/CHANGELOG.md b/crates/codeoid-protocol/CHANGELOG.md new file mode 100644 index 0000000..11bddf3 --- /dev/null +++ b/crates/codeoid-protocol/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +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] diff --git a/crates/codeoid-tui/CHANGELOG.md b/crates/codeoid-tui/CHANGELOG.md index 1eb97f2..c0c9833 100644 --- a/crates/codeoid-tui/CHANGELOG.md +++ b/crates/codeoid-tui/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/saucam/codeoid-ui/compare/v0.1.0...v0.1.1) - 2026-07-02 + +### Added + +- high-visibility approval banner for pending tool calls ([#6](https://github.com/saucam/codeoid-ui/pull/6)) + +### Fixed + +- terminal restore on panic, per-session render caches, incremental animation frames, sanitizer gaps ([#12](https://github.com/saucam/codeoid-ui/pull/12)) + +### Other + +- release v0.1.0 ([#7](https://github.com/saucam/codeoid-ui/pull/7)) + ## [0.1.0](https://github.com/saucam/codeoid-ui/releases/tag/v0.1.0) - 2026-06-23 ### Added