Skip to content

Commit 3625a05

Browse files
committed
chore: release v0.55.1
1 parent 23aefa9 commit 3625a05

File tree

12 files changed

+50
-50
lines changed

12 files changed

+50
-50
lines changed

Cargo.lock

Lines changed: 22 additions & 22 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.55.0"
3+
version = "0.55.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"
@@ -106,9 +106,9 @@ unwrap_used = "deny"
106106

107107

108108
[dependencies]
109-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.55.0" }
110-
vtcode-config = { path = "vtcode-config", version = "0.55.0" }
111-
vtcode-core = { path = "vtcode-core", version = "0.55.0" }
109+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.55.1" }
110+
vtcode-config = { path = "vtcode-config", version = "0.55.1" }
111+
vtcode-core = { path = "vtcode-core", version = "0.55.1" }
112112
anyhow = { workspace = true }
113113
clap = { version = "4.5", features = ["derive"] }
114114
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.55.0"
3+
version = "0.55.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.55.0"
3+
version = "0.55.1"
44
edition = "2024"
55
description = "Cross-platform shell execution helpers extracted from VT Code"
66
license = "MIT"
@@ -24,9 +24,9 @@ anyhow = "1.0"
2424
path-clean = "1.0"
2525
shell-escape = "0.1"
2626
tokio = { version = "1.0", features = ["sync", "macros", "rt"] }
27-
vtcode-commons = { path = "../vtcode-commons", version = "0.55.0" }
27+
vtcode-commons = { path = "../vtcode-commons", version = "0.55.1" }
2828
serde = { version = "1.0", features = ["derive"], optional = true }
29-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.55.0", optional = true }
29+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.55.1", optional = true }
3030

3131
[lints]
3232
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.55.0"
3+
version = "0.55.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.55.0"
3+
version = "0.55.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Config loader components shared across VT Code and downstream adopters"
@@ -26,7 +26,7 @@ serde_yaml = "0.9"
2626
toml = "0.9.10"
2727
toml_edit = "0.24.0"
2828
tracing = "0.1"
29-
vtcode-commons = { path = "../vtcode-commons", version = "0.55.0" }
29+
vtcode-commons = { path = "../vtcode-commons", version = "0.55.1" }
3030
dotenvy = "0.15"
3131
schemars = { workspace = true, optional = true, features = ["indexmap2"] }
3232

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.55.0"
3+
version = "0.55.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"
@@ -127,11 +127,11 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
127127
vt100 = "0.15.2"
128128
portable-pty = "0.9.0"
129129
ansi-to-tui = "7.0.0"
130-
vtcode-commons = { path = "../vtcode-commons", version = "0.55.0" }
131-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.55.0" }
132-
vtcode-config = { path = "../vtcode-config", version = "0.55.0" }
133-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.55.0" }
134-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.55.0" }
130+
vtcode-commons = { path = "../vtcode-commons", version = "0.55.1" }
131+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.55.1" }
132+
vtcode-config = { path = "../vtcode-config", version = "0.55.1" }
133+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.55.1" }
134+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.55.1" }
135135

136136
# Schema generation
137137
schemars = { workspace = true, optional = true }
@@ -164,7 +164,7 @@ tower-http = { version = "0.6", features = ["cors", "trace"], optional = true }
164164
tokio-stream = { version = "0.1", optional = true }
165165

166166
[build-dependencies]
167-
vtcode-config = { path = "../vtcode-config", version = "0.55.0" }
167+
vtcode-config = { path = "../vtcode-config", version = "0.55.1" }
168168

169169
[target.'cfg(unix)'.dependencies]
170170

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.55.0"
3+
version = "0.55.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.55.0"
3+
version = "0.55.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Workspace-friendly code indexer extracted from VT Code"

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.55.0"
3+
version = "0.55.1"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Prototype extraction of VT Code'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.55.0" }
43-
vtcode-core = { path = "../vtcode-core", version = "0.55.0" }
42+
vtcode-commons = { path = "../vtcode-commons", version = "0.55.1" }
43+
vtcode-core = { path = "../vtcode-core", version = "0.55.1" }
4444

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

0 commit comments

Comments
 (0)