Skip to content

Commit 64c7e09

Browse files
committed
chore: Release
1 parent 404531a commit 64c7e09

File tree

11 files changed

+51
-51
lines changed

11 files changed

+51
-51
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.5"
3+
version = "0.86.6"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
@@ -87,7 +87,7 @@ ignore = "0.4"
8787
ring = "0.17"
8888

8989
[workspace.package]
90-
version = "0.86.5"
90+
version = "0.86.6"
9191
edition = "2024"
9292
license = "MIT"
9393

@@ -142,11 +142,11 @@ multiple_unsafe_ops_per_block = "warn"
142142

143143

144144
[dependencies]
145-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.86.5" }
146-
vtcode-commons = { path = "vtcode-commons", version = "0.86.5" }
147-
vtcode-config = { path = "vtcode-config", version = "0.86.5" }
148-
vtcode-core = { path = "vtcode-core", version = "0.86.5", default-features = false }
149-
vtcode-tui = { path = "vtcode-tui", version = "0.86.5" }
145+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.86.6" }
146+
vtcode-commons = { path = "vtcode-commons", version = "0.86.6" }
147+
vtcode-config = { path = "vtcode-config", version = "0.86.6" }
148+
vtcode-core = { path = "vtcode-core", version = "0.86.6", default-features = false }
149+
vtcode-tui = { path = "vtcode-tui", version = "0.86.6" }
150150
anyhow = { workspace = true }
151151
clap = { workspace = true }
152152
serde_json = { workspace = true }

vtcode-bash-runner/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ tokio = { workspace = true, features = [
3737
"time",
3838
"rt-multi-thread",
3939
] }
40-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
40+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
4141
serde = { workspace = true, features = ["derive"], optional = true }
42-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.5", optional = true }
42+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.6", optional = true }
4343

4444
[target.'cfg(unix)'.dependencies]
4545
libc = { workspace = true }

vtcode-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ thiserror = { workspace = true }
3737
toml_edit = "0.24.0"
3838
tracing = { workspace = true }
3939
urlencoding = "2.1"
40-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
40+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
4141
dotenvy = { workspace = true }
4242
schemars = { workspace = true, optional = true, features = ["indexmap2"] }
4343

vtcode-core/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ better-panic = "0.3"
109109
perg = "0.8.0"
110110
nucleo-matcher = "0.3"
111111
line-clipping = "0.3"
112-
vtcode-file-search = { version = "0.86.5", path = "../vtcode-file-search" }
112+
vtcode-file-search = { version = "0.86.6", path = "../vtcode-file-search" }
113113
tui-shimmer = "0.1.3"
114114
pulldown-cmark = { version = "0.13", default-features = false, features = [
115115
"simd",
@@ -121,14 +121,14 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
121121
vt100 = "0.15.2"
122122
portable-pty = "0.9.0"
123123
ansi-to-tui = "8.0.1"
124-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
125-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.5" }
126-
vtcode-config = { path = "../vtcode-config", version = "0.86.5" }
127-
vtcode-tui = { path = "../vtcode-tui", version = "0.86.5" }
128-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.86.5" }
129-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.86.5" }
130-
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.86.5" }
131-
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.86.5" }
124+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
125+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.86.6" }
126+
vtcode-config = { path = "../vtcode-config", version = "0.86.6" }
127+
vtcode-tui = { path = "../vtcode-tui", version = "0.86.6" }
128+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.86.6" }
129+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.86.6" }
130+
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.86.6" }
131+
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.86.6" }
132132

133133
# Schema generation
134134
schemars = { workspace = true, optional = true }
@@ -168,7 +168,7 @@ tokio-tungstenite = { version = "0.28", default-features = false, features = [
168168
] }
169169

170170
[build-dependencies]
171-
vtcode-config = { path = "../vtcode-config", version = "0.86.5" }
171+
vtcode-config = { path = "../vtcode-config", version = "0.86.6" }
172172

173173
[target.'cfg(target_os = "linux")'.dependencies]
174174
libc = { workspace = true }

vtcode-exec-events/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ schemars = { workspace = true, optional = true, features = [
3030
] }
3131
uuid = { workspace = true, features = ["v4", "serde"] }
3232
chrono = { workspace = true }
33-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
33+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
3434

3535
[lints]
3636
workspace = true

vtcode-file-search/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ anyhow = { workspace = true }
2121
clap = { workspace = true, features = ["derive"] }
2222
ignore = { workspace = true }
2323
nucleo-matcher = "0.3"
24-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
24+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
2525
serde = { workspace = true, features = ["derive"] }
2626
serde_json = { workspace = true }
2727
tokio = { workspace = true, features = ["full"] }

vtcode-indexer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ hashbrown = { workspace = true }
2424
regex = { workspace = true }
2525
serde = { workspace = true, features = ["derive"] }
2626
ignore = { workspace = true } # Respect .gitignore, .ignore, etc.
27-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
27+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
2828

2929
[dev-dependencies]
3030
tempfile = { workspace = true }

vtcode-llm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ mock = ["dep:async-trait"]
3838
[dependencies]
3939
anyhow = { workspace = true }
4040
async-trait = { workspace = true, optional = true }
41-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
42-
vtcode-core = { path = "../vtcode-core", version = "0.86.5", default-features = false }
41+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
42+
vtcode-core = { path = "../vtcode-core", version = "0.86.6", default-features = false }
4343

4444
[dev-dependencies]
4545
futures = { workspace = true }

vtcode-tools/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ policies = []
2121
examples = []
2222

2323
[dependencies]
24-
vtcode-commons = { path = "../vtcode-commons", version = "0.86.5" }
25-
vtcode-core = { path = "../vtcode-core", version = "0.86.5", default-features = false }
26-
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.86.5" }
24+
vtcode-commons = { path = "../vtcode-commons", version = "0.86.6" }
25+
vtcode-core = { path = "../vtcode-core", version = "0.86.6", default-features = false }
26+
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.86.6" }
2727
anyhow = { workspace = true }
2828
async-trait = { workspace = true }
2929
hashbrown = { workspace = true }

0 commit comments

Comments
 (0)