Skip to content

Commit 435ca1c

Browse files
committed
chore: release v0.53.1
1 parent 2236e79 commit 435ca1c

File tree

12 files changed

+43
-43
lines changed

12 files changed

+43
-43
lines changed

Cargo.lock

Lines changed: 15 additions & 15 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.53.0"
3+
version = "0.53.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"
@@ -105,9 +105,9 @@ unwrap_used = "deny"
105105

106106

107107
[dependencies]
108-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.53.0" }
109-
vtcode-config = { path = "vtcode-config", version = "0.53.0" }
110-
vtcode-core = { path = "vtcode-core", version = "0.53.0" }
108+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.53.1" }
109+
vtcode-config = { path = "vtcode-config", version = "0.53.1" }
110+
vtcode-core = { path = "vtcode-core", version = "0.53.1" }
111111
anyhow = { workspace = true }
112112
clap = { version = "4.5", features = ["derive"] }
113113
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.53.0"
3+
version = "0.53.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.53.0"
3+
version = "0.53.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.53.0" }
26+
vtcode-commons = { path = "../vtcode-commons", version = "0.53.1" }
2727
serde = { version = "1.0", features = ["derive"], optional = true }
28-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.53.0", optional = true }
28+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.53.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.53.0"
3+
version = "0.53.1"
44
edition = "2021"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Shared traits for paths, telemetry, and error reporting reused across VT Code 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.53.0"
3+
version = "0.53.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Config loader components shared across VT Code and downstream adopters"
@@ -25,7 +25,7 @@ serde_json = { workspace = true }
2525
toml = "0.9.10"
2626
toml_edit = "0.24.0"
2727
tracing = "0.1"
28-
vtcode-commons = { path = "../vtcode-commons", version = "0.53.0" }
28+
vtcode-commons = { path = "../vtcode-commons", version = "0.53.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.53.0"
3+
version = "0.53.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Core library for VT Code - a Rust-based terminal coding agent"
@@ -125,11 +125,11 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
125125
vt100 = "0.15.2"
126126
portable-pty = "0.9.0"
127127
ansi-to-tui = "7.0.0"
128-
vtcode-commons = { path = "../vtcode-commons", version = "0.53.0" }
129-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.53.0" }
130-
vtcode-config = { path = "../vtcode-config", version = "0.53.0" }
131-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.53.0" }
132-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.53.0" }
128+
vtcode-commons = { path = "../vtcode-commons", version = "0.53.1" }
129+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.53.1" }
130+
vtcode-config = { path = "../vtcode-config", version = "0.53.1" }
131+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.53.1" }
132+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.53.1" }
133133

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

163163
[build-dependencies]
164-
vtcode-config = { path = "../vtcode-config", version = "0.53.0" }
164+
vtcode-config = { path = "../vtcode-config", version = "0.53.1" }
165165

166166
[target.'cfg(unix)'.dependencies]
167167

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.53.0"
3+
version = "0.53.1"
44
edition = "2024"
55
description = "Structured execution telemetry event schema used across VT Code 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.53.0"
3+
version = "0.53.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.53.0"
3+
version = "0.53.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.53.0" }
43-
vtcode-core = { path = "../vtcode-core", version = "0.53.0" }
42+
vtcode-commons = { path = "../vtcode-commons", version = "0.53.1" }
43+
vtcode-core = { path = "../vtcode-core", version = "0.53.1" }
4444

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

0 commit comments

Comments
 (0)