Skip to content

Commit 4fbc353

Browse files
committed
chore: release v0.50.7
1 parent bb67d1f commit 4fbc353

12 files changed

Lines changed: 45 additions & 45 deletions

File tree

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.50.6"
3+
version = "0.50.7"
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"
@@ -99,9 +99,9 @@ unwrap_used = "deny"
9999

100100

101101
[dependencies]
102-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.50.6" }
103-
vtcode-config = { path = "vtcode-config", version = "0.50.6" }
104-
vtcode-core = { path = "vtcode-core", version = "0.50.6" }
102+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.50.7" }
103+
vtcode-config = { path = "vtcode-config", version = "0.50.7" }
104+
vtcode-core = { path = "vtcode-core", version = "0.50.7" }
105105
anyhow = "1.0"
106106
clap = { version = "4.5", features = ["derive"] }
107107
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.50.6"
3+
version = "0.50.7"
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.50.6"
3+
version = "0.50.7"
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.50.6" }
26+
vtcode-commons = { path = "../vtcode-commons", version = "0.50.7" }
2727
serde = { version = "1.0", features = ["derive"], optional = true }
28-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.50.6", optional = true }
28+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.50.7", 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.50.6"
3+
version = "0.50.7"
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.50.6"
3+
version = "0.50.7"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Config loader components shared across VTCode and downstream adopters"
@@ -24,7 +24,7 @@ serde_json = { workspace = true }
2424
toml = "0.9.8"
2525
toml_edit = "0.23.7"
2626
tracing = "0.1"
27-
vtcode-commons = { path = "../vtcode-commons", version = "0.50.6" }
27+
vtcode-commons = { path = "../vtcode-commons", version = "0.50.7" }
2828
dotenvy = "0.15"
2929
schemars = { workspace = true, optional = true, features = ["indexmap2"] }
3030

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.50.6"
3+
version = "0.50.7"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Core library for VTCode - 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.50.6" }
129-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.50.6" }
130-
vtcode-config = { path = "../vtcode-config", version = "0.50.6" }
131-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.50.6" }
132-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.50.6" }
128+
vtcode-commons = { path = "../vtcode-commons", version = "0.50.7" }
129+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.50.7" }
130+
vtcode-config = { path = "../vtcode-config", version = "0.50.7" }
131+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.50.7" }
132+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.50.7" }
133133

134134
# Token counting for attention budget management
135135
tokenizers = { version = "0.22", features = ["http"] }
@@ -155,7 +155,7 @@ editor-command = "2.0"
155155
signal-hook = "0.3"
156156

157157
[build-dependencies]
158-
vtcode-config = { path = "../vtcode-config", version = "0.50.6" }
158+
vtcode-config = { path = "../vtcode-config", version = "0.50.7" }
159159

160160
[target.'cfg(unix)'.dependencies]
161161

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.50.6"
3+
version = "0.50.7"
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.50.6"
3+
version = "0.50.7"
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.50.6"
3+
version = "0.50.7"
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.50.6" }
43-
vtcode-core = { path = "../vtcode-core", version = "0.50.6" }
42+
vtcode-commons = { path = "../vtcode-commons", version = "0.50.7" }
43+
vtcode-core = { path = "../vtcode-core", version = "0.50.7" }
4444

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

0 commit comments

Comments
 (0)