Skip to content

Commit e1ef41d

Browse files
committed
chore: Release
1 parent 57b04ad commit e1ef41d

File tree

12 files changed

+65
-65
lines changed

12 files changed

+65
-65
lines changed

Cargo.lock

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

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"
3-
version = "0.91.1"
3+
version = "0.92.0"
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.91.1"
90+
version = "0.92.0"
9191
edition = "2024"
9292
license = "MIT"
9393

@@ -145,12 +145,12 @@ multiple_unsafe_ops_per_block = "warn"
145145

146146

147147
[dependencies]
148-
vtcode-acp = { path = "vtcode-acp", version = "0.91.1" }
149-
vtcode-commons = { path = "vtcode-commons", version = "0.91.1" }
150-
vtcode-config = { path = "vtcode-config", version = "0.91.1" }
151-
vtcode-auth = { path = "vtcode-auth", version = "0.91.1" }
152-
vtcode-core = { path = "vtcode-core", version = "0.91.1", default-features = false }
153-
vtcode-tui = { path = "vtcode-tui", version = "0.91.1" }
148+
vtcode-acp = { path = "vtcode-acp", version = "0.92.0" }
149+
vtcode-commons = { path = "vtcode-commons", version = "0.92.0" }
150+
vtcode-config = { path = "vtcode-config", version = "0.92.0" }
151+
vtcode-auth = { path = "vtcode-auth", version = "0.92.0" }
152+
vtcode-core = { path = "vtcode-core", version = "0.92.0", default-features = false }
153+
vtcode-tui = { path = "vtcode-tui", version = "0.92.0" }
154154
anyhow = { workspace = true }
155155
clap = { workspace = true }
156156
serde_json = { workspace = true }

vtcode-acp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ tokio-util = { workspace = true, features = ["compat"] }
2424
tracing = { workspace = true }
2525
url = { workspace = true }
2626
percent-encoding = "2.3"
27-
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.91.1" }
28-
vtcode-core = { path = "../vtcode-core", version = "0.91.1" }
27+
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.92.0" }
28+
vtcode-core = { path = "../vtcode-core", version = "0.92.0" }
2929

3030
[dev-dependencies]
3131
assert_fs = { 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.91.1" }
40+
vtcode-commons = { path = "../vtcode-commons", version = "0.92.0" }
4141
serde = { workspace = true, features = ["derive"], optional = true }
42-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.91.1", optional = true }
42+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.92.0", optional = true }
4343

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

vtcode-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ thiserror = { workspace = true }
3838
toml_edit = "0.24.0"
3939
tracing = { workspace = true }
4040
urlencoding = "2.1"
41-
vtcode-commons = { path = "../vtcode-commons", version = "0.91.1" }
42-
vtcode-auth = { path = "../vtcode-auth", version = "0.91.1" }
41+
vtcode-commons = { path = "../vtcode-commons", version = "0.92.0" }
42+
vtcode-auth = { path = "../vtcode-auth", version = "0.92.0" }
4343
dotenvy = { workspace = true }
4444
tempfile = { workspace = true }
4545
walkdir = { workspace = true }

vtcode-core/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ better-panic = "0.3"
117117
perg = "0.8.0"
118118
nucleo-matcher = "0.3"
119119
line-clipping = "0.3"
120-
vtcode-file-search = { version = "0.91.1", path = "../vtcode-file-search" }
120+
vtcode-file-search = { version = "0.92.0", path = "../vtcode-file-search" }
121121
tui-shimmer = "0.1.3"
122122
pulldown-cmark = { version = "0.13", default-features = false, features = [
123123
"simd",
@@ -129,15 +129,15 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
129129
vt100 = "0.15.2"
130130
portable-pty = "0.9.0"
131131
ansi-to-tui = "8.0.1"
132-
vtcode-commons = { path = "../vtcode-commons", version = "0.91.1" }
133-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.91.1" }
134-
vtcode-auth = { path = "../vtcode-auth", version = "0.91.1" }
135-
vtcode-config = { path = "../vtcode-config", version = "0.91.1" }
136-
vtcode-tui = { path = "../vtcode-tui", version = "0.91.1" }
137-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.91.1" }
138-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.91.1" }
139-
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.91.1" }
140-
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.91.1" }
132+
vtcode-commons = { path = "../vtcode-commons", version = "0.92.0" }
133+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.92.0" }
134+
vtcode-auth = { path = "../vtcode-auth", version = "0.92.0" }
135+
vtcode-config = { path = "../vtcode-config", version = "0.92.0" }
136+
vtcode-tui = { path = "../vtcode-tui", version = "0.92.0" }
137+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.92.0" }
138+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.92.0" }
139+
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.92.0" }
140+
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.92.0" }
141141

142142
# Schema generation
143143
schemars = { workspace = true, optional = true }
@@ -179,7 +179,7 @@ tokio-tungstenite = { version = "0.28", default-features = false, features = [
179179
smallvec = "1.15.1"
180180

181181
[build-dependencies]
182-
vtcode-config = { path = "../vtcode-config", version = "0.91.1" }
182+
vtcode-config = { path = "../vtcode-config", version = "0.92.0" }
183183

184184
[target.'cfg(target_os = "linux")'.dependencies]
185185
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.91.1" }
33+
vtcode-commons = { path = "../vtcode-commons", version = "0.92.0" }
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.91.1" }
24+
vtcode-commons = { path = "../vtcode-commons", version = "0.92.0" }
2525
serde = { workspace = true, features = ["derive"] }
2626
serde_json = { workspace = true }
2727
tokio = { workspace = true, features = ["full"] }

0 commit comments

Comments
 (0)