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.0"
version = "0.1.1"
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.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"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/codeoid-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions crates/codeoid-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
Comment on lines +1 to +8

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ“ Maintainability & Code Quality | 🟠 Major | ⚑ Quick win

Add a 0.1.1 release section to codeoid-protocol's CHANGELOG.

The codeoid-protocol changelog is missing a 0.1.1 release entry. Both codeoid-client and codeoid-tui have explicit 0.1.1 sections with release dates and PR references, but codeoid-protocol only contains the header and an [Unreleased] section. For consistency across the workspace, add a matching 0.1.1 release section (even if it documents no user-facing changes, it should state the release date and any relevant links).

πŸ”§ Proposed addition
 ## [Unreleased]
 
+## [0.1.1](https://github.com/saucam/codeoid-ui/compare/codeoid-protocol-v0.1.0...codeoid-protocol-v0.1.1) - 2026-06-23
+
πŸ“ Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
# 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]
# 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]
## [0.1.1](https://github.com/saucam/codeoid-ui/compare/codeoid-protocol-v0.1.0...codeoid-protocol-v0.1.1) - 2026-06-23
πŸ€– Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@crates/codeoid-protocol/CHANGELOG.md` around lines 1 - 8, The
codeoid-protocol CHANGELOG is missing a 0.1.1 release section that should exist
for consistency with codeoid-client and codeoid-tui. Add a new release section
with the version number 0.1.1 after the header information and before or
adjacent to the [Unreleased] section in the changelog file, following the same
format used in the other project changelogs by including the release date and
any relevant PR references or links.

14 changes: 14 additions & 0 deletions crates/codeoid-tui/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.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
Expand Down
Loading