Skip to content

Commit b18fe16

Browse files
committed
chore: release v0.52.1
1 parent 117f8e9 commit b18fe16

File tree

12 files changed

+45
-45
lines changed

12 files changed

+45
-45
lines changed

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers"
@@ -104,9 +104,9 @@ unwrap_used = "deny"
104104

105105

106106
[dependencies]
107-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.52.0" }
108-
vtcode-config = { path = "vtcode-config", version = "0.52.0" }
109-
vtcode-core = { path = "vtcode-core", version = "0.52.0" }
107+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.52.1" }
108+
vtcode-config = { path = "vtcode-config", version = "0.52.1" }
109+
vtcode-core = { path = "vtcode-core", version = "0.52.1" }
110110
anyhow = { workspace = true }
111111
clap = { version = "4.5", features = ["derive"] }
112112
serde_json = { workspace = true }

vtcode-acp-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-acp-client"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "ACP client implementation for inter-agent communication and orchestration"

vtcode-bash-runner/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-bash-runner"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
description = "Cross-platform shell execution helpers extracted from VTCode"
66
license = "MIT"
@@ -23,9 +23,9 @@ exec-events = ["dep:vtcode-exec-events"]
2323
anyhow = "1.0"
2424
path-clean = "1.0"
2525
shell-escape = "0.1"
26-
vtcode-commons = { path = "../vtcode-commons", version = "0.52.0" }
26+
vtcode-commons = { path = "../vtcode-commons", version = "0.52.1" }
2727
serde = { version = "1.0", features = ["derive"], optional = true }
28-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.52.0", optional = true }
28+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.52.1", optional = true }
2929

3030
[lints]
3131
workspace = true

vtcode-commons/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-commons"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2021"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Shared traits for paths, telemetry, and error reporting reused across VTCode component extractions"

vtcode-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-config"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Config loader components shared across VTCode and downstream adopters"
@@ -25,7 +25,7 @@ serde_json = { workspace = true }
2525
toml = "0.9.8"
2626
toml_edit = "0.23.7"
2727
tracing = "0.1"
28-
vtcode-commons = { path = "../vtcode-commons", version = "0.52.0" }
28+
vtcode-commons = { path = "../vtcode-commons", version = "0.52.1" }
2929
dotenvy = "0.15"
3030
schemars = { workspace = true, optional = true, features = ["indexmap2"] }
3131

vtcode-core/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-core"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Core library for VTCode - a Rust-based terminal coding agent"
@@ -124,11 +124,11 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
124124
vt100 = "0.15.2"
125125
portable-pty = "0.9.0"
126126
ansi-to-tui = "7.0.0"
127-
vtcode-commons = { path = "../vtcode-commons", version = "0.52.0" }
128-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.52.0" }
129-
vtcode-config = { path = "../vtcode-config", version = "0.52.0" }
130-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.52.0" }
131-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.52.0" }
127+
vtcode-commons = { path = "../vtcode-commons", version = "0.52.1" }
128+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.52.1" }
129+
vtcode-config = { path = "../vtcode-config", version = "0.52.1" }
130+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.52.1" }
131+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.52.1" }
132132

133133
# Token counting for attention budget management
134134
# Note: 'http' feature required for from_pretrained(), adds ~2MB to binary
@@ -157,7 +157,7 @@ signal-hook = "0.3"
157157
better-panic = { version = "0.3.0", features = ["syntect"] }
158158

159159
[build-dependencies]
160-
vtcode-config = { path = "../vtcode-config", version = "0.52.0" }
160+
vtcode-config = { path = "../vtcode-config", version = "0.52.1" }
161161

162162
[target.'cfg(unix)'.dependencies]
163163

vtcode-exec-events/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-exec-events"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
description = "Structured execution telemetry event schema used across VTCode crates."
66
license = "MIT OR Apache-2.0"

vtcode-indexer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-indexer"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Workspace-friendly code indexer extracted from VTCode"

vtcode-llm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-llm"
3-
version = "0.52.0"
3+
version = "0.52.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Prototype extraction of VTCode's unified LLM client layer"
@@ -39,8 +39,8 @@ mock = ["dep:async-trait"]
3939
[dependencies]
4040
anyhow = "1.0"
4141
async-trait = { version = "0.1", optional = true }
42-
vtcode-commons = { path = "../vtcode-commons", version = "0.52.0" }
43-
vtcode-core = { path = "../vtcode-core", version = "0.52.0" }
42+
vtcode-commons = { path = "../vtcode-commons", version = "0.52.1" }
43+
vtcode-core = { path = "../vtcode-core", version = "0.52.1" }
4444

4545
[dev-dependencies]
4646
futures = "0.3"

0 commit comments

Comments
 (0)