Skip to content

Commit bf3fb69

Browse files
committed
chore: Release
1 parent fa2c65f commit bf3fb69

File tree

14 files changed

+63
-63
lines changed

14 files changed

+63
-63
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode"
3-
version = "0.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
@@ -55,7 +55,7 @@ keyring = "3"
5555
libloading = "0.8"
5656

5757
[workspace.package]
58-
version = "0.86.3"
58+
version = "0.86.4"
5959
edition = "2021"
6060
license = "MIT"
6161

@@ -107,11 +107,11 @@ multiple_unsafe_ops_per_block = "warn"
107107

108108

109109
[dependencies]
110-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.86.3" }
111-
vtcode-commons = { path = "vtcode-commons", version = "0.86.3" }
112-
vtcode-config = { path = "vtcode-config", version = "0.86.3" }
113-
vtcode-core = { path = "vtcode-core", version = "0.86.3", default-features = false }
114-
vtcode-tui = { path = "vtcode-tui", version = "0.86.3" }
110+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.86.4" }
111+
vtcode-commons = { path = "vtcode-commons", version = "0.86.4" }
112+
vtcode-config = { path = "vtcode-config", version = "0.86.4" }
113+
vtcode-core = { path = "vtcode-core", version = "0.86.4", default-features = false }
114+
vtcode-tui = { path = "vtcode-tui", version = "0.86.4" }
115115
anyhow = { workspace = true }
116116
clap = { version = "4.5", features = ["derive"] }
117117
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.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]

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.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
description = "Cross-platform shell execution helpers extracted from VT Code"
@@ -37,9 +37,9 @@ tokio = { version = "1.49", features = [
3737
"time",
3838
"rt-multi-thread",
3939
] }
40-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.3" }
40+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.4" }
4141
serde = { version = "1.0", features = ["derive"], optional = true }
42-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.3", optional = true }
42+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.4", optional = true }
4343

4444
[target.'cfg(unix)'.dependencies]
4545
libc = "0.2"

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.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]

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.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
@@ -37,7 +37,7 @@ thiserror = { workspace = true }
3737
toml_edit = "0.24.0"
3838
tracing = "0.1"
3939
urlencoding = "2.1"
40-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.3" }
40+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.4" }
4141
dotenvy = "0.15"
4242
schemars = { workspace = true, optional = true, features = ["indexmap2"] }
4343

vtcode-core/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode-core"
3-
version = "0.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
@@ -115,7 +115,7 @@ better-panic = "0.3"
115115
perg = "0.8.0"
116116
nucleo-matcher = "0.3"
117117
line-clipping = "0.3"
118-
vtcode-file-search = { version = "0.86.3", path = "../vtcode-file-search" }
118+
vtcode-file-search = { version = "0.86.4", path = "../vtcode-file-search" }
119119
tui-shimmer = "0.1.3"
120120
pulldown-cmark = { version = "0.13", default-features = false, features = [
121121
"simd",
@@ -127,14 +127,14 @@ 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 = "8.0.1"
130-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.3" }
131-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.3" }
132-
vtcode-config = { path = "../vtcode-config", version = "0.86.3" }
133-
vtcode-tui = { path = "../vtcode-tui", version = "0.86.3" }
134-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.86.3" }
135-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.86.3" }
136-
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.86.3" }
137-
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.86.3" }
130+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.4" }
131+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.4" }
132+
vtcode-config = { path = "../vtcode-config", version = "0.86.4" }
133+
vtcode-tui = { path = "../vtcode-tui", version = "0.86.4" }
134+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.86.4" }
135+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.86.4" }
136+
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.86.4" }
137+
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.86.4" }
138138

139139
# Schema generation
140140
schemars = { workspace = true, optional = true }
@@ -174,7 +174,7 @@ tokio-tungstenite = { version = "0.28", default-features = false, features = [
174174
] }
175175

176176
[build-dependencies]
177-
vtcode-config = { path = "../vtcode-config", version = "0.86.3" }
177+
vtcode-config = { path = "../vtcode-config", version = "0.86.4" }
178178

179179
[target.'cfg(target_os = "linux")'.dependencies]
180180
libc = "0.2"

vtcode-exec-events/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-exec-events"
3-
version = "0.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
description = "Structured execution telemetry event schema used across VT Code crates."
@@ -30,7 +30,7 @@ schemars = { workspace = true, optional = true, features = [
3030
] }
3131
uuid = { version = "1.21", features = ["v4", "serde"] }
3232
chrono = { version = "0.4", features = ["serde"] }
33-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.3" }
33+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.4" }
3434

3535
[lints]
3636
workspace = true

vtcode-file-search/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-file-search"
3-
version = "0.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
license = "MIT"
@@ -21,7 +21,7 @@ anyhow = { workspace = true }
2121
clap = { workspace = true, features = ["derive"] }
2222
ignore = "0.4"
2323
nucleo-matcher = "0.3"
24-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.3" }
24+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.4" }
2525
serde = { workspace = true, features = ["derive"] }
2626
serde_json = { workspace = true }
2727
tokio = { workspace = true, features = ["full"] }

vtcode-indexer/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-indexer"
3-
version = "0.86.3"
3+
version = "0.86.4"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
@@ -24,7 +24,7 @@ hashbrown = { workspace = true }
2424
regex = "1.12"
2525
serde = { version = "1.0", features = ["derive"] }
2626
ignore = "0.4" # Respect .gitignore, .ignore, etc.
27-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.3" }
27+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.4" }
2828

2929
[dev-dependencies]
3030
tempfile = "3.25"

0 commit comments

Comments
 (0)