Skip to content

Commit 8d0745b

Browse files
committed
chore(release): bump version to {{version}}
1 parent e9d05a3 commit 8d0745b

File tree

13 files changed

+52
-52
lines changed

13 files changed

+52
-52
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode"
3-
version = "0.58.5"
3+
version = "0.58.6"
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"
@@ -46,7 +46,7 @@ ctor = "0.2"
4646
libc = "0.2"
4747

4848
[workspace.package]
49-
version = "0.58.5"
49+
version = "0.58.6"
5050
edition = "2021"
5151
license = "MIT"
5252

@@ -116,10 +116,10 @@ unwrap_used = "deny"
116116

117117

118118
[dependencies]
119-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.58.5" }
120-
vtcode-config = { path = "vtcode-config", version = "0.58.5" }
121-
vtcode-core = { path = "vtcode-core", version = "0.58.5" }
122-
vtcode-process-hardening = { path = "vtcode-process-hardening", version = "0.58.5" }
119+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.58.6" }
120+
vtcode-config = { path = "vtcode-config", version = "0.58.6" }
121+
vtcode-core = { path = "vtcode-core", version = "0.58.6" }
122+
vtcode-process-hardening = { path = "vtcode-process-hardening", version = "0.58.6" }
123123
anyhow = { workspace = true }
124124
clap = { version = "4.5", features = ["derive"] }
125125
ctor = { 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.58.5"
3+
version = "0.58.6"
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.58.5"
3+
version = "0.58.6"
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.58.5" }
27+
vtcode-commons = { path = "../vtcode-commons", version = "0.58.6" }
2828
serde = { version = "1.0", features = ["derive"], optional = true }
29-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.58.5", optional = true }
29+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.58.6", 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.58.5"
3+
version = "0.58.6"
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.58.5"
3+
version = "0.58.6"
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.58.5" }
29+
vtcode-commons = { path = "../vtcode-commons", version = "0.58.6" }
3030
dotenvy = "0.15"
3131
schemars = { workspace = true, optional = true, features = ["indexmap2"] }
3232

vtcode-core/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-core"
3-
version = "0.58.5"
3+
version = "0.58.6"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Core library for VT Code - a Rust-based terminal coding agent"
@@ -117,7 +117,7 @@ tui-prompts = "0.5"
117117
perg = "0.8.0"
118118
nucleo-matcher = "0.3"
119119
line-clipping = "0.3"
120-
vtcode-file-search = { version = "0.58.5", path = "../vtcode-file-search" }
120+
vtcode-file-search = { version = "0.58.6", path = "../vtcode-file-search" }
121121
pulldown-cmark = { version = "0.13", default-features = false, features = [
122122
"simd",
123123
] }
@@ -128,11 +128,11 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
128128
vt100 = "0.15.2"
129129
portable-pty = "0.9.0"
130130
ansi-to-tui = "8.0.0"
131-
vtcode-commons = { path = "../vtcode-commons", version = "0.58.5" }
132-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.58.5" }
133-
vtcode-config = { path = "../vtcode-config", version = "0.58.5" }
134-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.58.5" }
135-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.58.5" }
131+
vtcode-commons = { path = "../vtcode-commons", version = "0.58.6" }
132+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.58.6" }
133+
vtcode-config = { path = "../vtcode-config", version = "0.58.6" }
134+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.58.6" }
135+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.58.6" }
136136

137137
# Schema generation
138138
schemars = { workspace = true, optional = true }
@@ -166,7 +166,7 @@ tower-http = { version = "0.6", features = ["cors", "trace"], optional = true }
166166
tokio-stream = { version = "0.1", optional = true }
167167

168168
[build-dependencies]
169-
vtcode-config = { path = "../vtcode-config", version = "0.58.5" }
169+
vtcode-config = { path = "../vtcode-config", version = "0.58.6" }
170170

171171
[target.'cfg(unix)'.dependencies]
172172

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.58.5"
3+
version = "0.58.6"
44
edition = "2024"
55
description = "Structured execution telemetry event schema used across VT Code crates."
66
license = "MIT OR Apache-2.0"

vtcode-file-search/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-file-search"
3-
version = "0.58.5"
3+
version = "0.58.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Fast, parallel fuzzy file search library for VT Code"

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

0 commit comments

Comments
 (0)