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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ 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/),

## [0.3.3] - 2026-08-24

### Changed

- **Self-healing symbol lookup errors** — `mcp` symbol calls on a missing
name now return up to five ranked suggestions (exact prefix, then
substring, then edit distance ≤ 2, case-insensitive, ties alphabetical)
plus an embedded mini-outline of top-level symbols, so an agent recovers
in one round-trip instead of failing.
- **Range-parse errors state accepted formats** — invalid `lines` input now
names the expected forms (`N`, `N-M`, `N-`) instead of a bare failure.

## [0.3.2] - 2026-08-24

### Fixed
Expand Down
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 @@ -3,16 +3,16 @@ resolver = "2"
members = ["crates/ctx-symbol", "crates/ctx-exec", "crates/ctxctl"]

[workspace.package]
version = "0.3.2"
version = "0.3.3"
edition = "2024"
license = "MIT"
authors = ["fuyu"]
repository = "https://github.com/Xuepoo/ctxctl"
homepage = "https://ctxctl.xuepoo.xyz"

[workspace.dependencies]
ctx-symbol = { path = "crates/ctx-symbol", version = "0.3.2" }
ctx-exec = { path = "crates/ctx-exec", version = "0.3.2" }
ctx-symbol = { path = "crates/ctx-symbol", version = "0.3.3" }
ctx-exec = { path = "crates/ctx-exec", version = "0.3.3" }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
Loading