Skip to content

Commit edefba0

Browse files
committed
chore: Release
1 parent 2bf3400 commit edefba0

13 files changed

Lines changed: 61 additions & 61 deletions

File tree

Cargo.lock

Lines changed: 18 additions & 18 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.133.20"
3+
version = "0.133.21"
44
edition = "2024"
55
rust-version = "1.88"
66
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
@@ -98,7 +98,7 @@ ctor = "0.2"
9898
webbrowser = "1.2"
9999

100100
[workspace.package]
101-
version = "0.133.20"
101+
version = "0.133.21"
102102
edition = "2024"
103103
license = "MIT"
104104
homepage = "https://github.com/vinhnx/vtcode"
@@ -221,12 +221,12 @@ allow_attributes_without_reason = "allow" # TODO: Phase in after suppression au
221221

222222

223223
[dependencies]
224-
vtcode-acp = { path = "vtcode-acp", version = "0.133.20" }
225-
vtcode-commons = { path = "vtcode-commons", version = "0.133.20" }
226-
vtcode-ui = { path = "vtcode-ui", version = "0.133.20" }
227-
vtcode-config = { path = "vtcode-config", version = "0.133.20" }
228-
vtcode-auth = { path = "vtcode-auth", version = "0.133.20" }
229-
vtcode-core = { path = "vtcode-core", version = "0.133.20", default-features = false }
224+
vtcode-acp = { path = "vtcode-acp", version = "0.133.21" }
225+
vtcode-commons = { path = "vtcode-commons", version = "0.133.21" }
226+
vtcode-ui = { path = "vtcode-ui", version = "0.133.21" }
227+
vtcode-config = { path = "vtcode-config", version = "0.133.21" }
228+
vtcode-auth = { path = "vtcode-auth", version = "0.133.21" }
229+
vtcode-core = { path = "vtcode-core", version = "0.133.21", default-features = false }
230230
anyhow = { workspace = true }
231231
clap = { workspace = true }
232232
serde_json = { workspace = true }

vtcode-acp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ tracing = { workspace = true }
3030
uuid = { workspace = true, features = ["v4"] }
3131
url = { workspace = true }
3232
percent-encoding = "2.3"
33-
vtcode-core = { path = "../vtcode-core", version = "0.133.20" }
34-
vtcode-config = { path = "../vtcode-config", version = "0.133.20" }
33+
vtcode-core = { path = "../vtcode-core", version = "0.133.21" }
34+
vtcode-config = { path = "../vtcode-config", version = "0.133.21" }
3535

3636
[dev-dependencies]
3737
assert_fs = { workspace = true }

vtcode-bash-runner/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ tokio = { workspace = true, features = [
3838
"time",
3939
"rt-multi-thread",
4040
] }
41-
vtcode-commons = { path = "../vtcode-commons", version = "0.133.20" }
41+
vtcode-commons = { path = "../vtcode-commons", version = "0.133.21" }
4242
serde = { workspace = true, features = ["derive"], optional = true }
43-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.133.20", optional = true }
43+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.133.21", optional = true }
4444

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

vtcode-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ toml = { workspace = true }
3131
thiserror = { workspace = true }
3232
toml_edit = "0.25.12"
3333
tracing = { workspace = true }
34-
vtcode-commons = { path = "../vtcode-commons", version = "0.133.20" }
35-
vtcode-auth = { path = "../vtcode-auth", version = "0.133.20" }
34+
vtcode-commons = { path = "../vtcode-commons", version = "0.133.21" }
35+
vtcode-auth = { path = "../vtcode-auth", version = "0.133.21" }
3636
dotenvy = { workspace = true }
3737
tempfile = { workspace = true }
3838
schemars = { workspace = true, optional = true, features = ["indexmap2"] }

vtcode-core/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -114,20 +114,20 @@ rig = { package = "rig-core", version = "0.39", default-features = false, featur
114114
] }
115115
portable-pty = "0.9.0"
116116
ansi-to-tui = "8.0.1"
117-
vtcode-commons = { path = "../vtcode-commons", version = "0.133.20" }
118-
vtcode-ui = { path = "../vtcode-ui", version = "0.133.20" }
119-
vtcode-macros = { path = "../vtcode-macros", version = "0.133.20" }
120-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.133.20" }
121-
vtcode-auth = { path = "../vtcode-auth", version = "0.133.20" }
122-
vtcode-config = { path = "../vtcode-config", version = "0.133.20" }
123-
vtcode-utility-tool-specs = { path = "../vtcode-utility-tool-specs", version = "0.133.20" }
124-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.133.20" }
125-
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.133.20" }
126-
vtcode-safety = { path = "../vtcode-safety", version = "0.133.20" }
127-
vtcode-a2a = { path = "../vtcode-a2a", version = "0.133.20" }
128-
vtcode-mcp = { path = "../vtcode-mcp", version = "0.133.20" }
129-
vtcode-llm = { path = "../vtcode-llm", version = "0.133.20", features = ["copilot"] }
130-
vtcode-skills = { path = "../vtcode-skills", version = "0.133.20" }
117+
vtcode-commons = { path = "../vtcode-commons", version = "0.133.21" }
118+
vtcode-ui = { path = "../vtcode-ui", version = "0.133.21" }
119+
vtcode-macros = { path = "../vtcode-macros", version = "0.133.21" }
120+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.133.21" }
121+
vtcode-auth = { path = "../vtcode-auth", version = "0.133.21" }
122+
vtcode-config = { path = "../vtcode-config", version = "0.133.21" }
123+
vtcode-utility-tool-specs = { path = "../vtcode-utility-tool-specs", version = "0.133.21" }
124+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.133.21" }
125+
vtcode-bash-runner = { path = "../vtcode-bash-runner", version = "0.133.21" }
126+
vtcode-safety = { path = "../vtcode-safety", version = "0.133.21" }
127+
vtcode-a2a = { path = "../vtcode-a2a", version = "0.133.21" }
128+
vtcode-mcp = { path = "../vtcode-mcp", version = "0.133.21" }
129+
vtcode-llm = { path = "../vtcode-llm", version = "0.133.21", features = ["copilot"] }
130+
vtcode-skills = { path = "../vtcode-skills", version = "0.133.21" }
131131

132132
# Schema generation
133133
schemars = { workspace = true, optional = true }

vtcode-indexer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ serde_json = { workspace = true }
3333
serde-saphyr = { workspace = true }
3434
tokio = { workspace = true, features = ["full"] }
3535
tracing = { workspace = true }
36-
vtcode-commons = { path = "../vtcode-commons", version = "0.133.20" }
36+
vtcode-commons = { path = "../vtcode-commons", version = "0.133.21" }
3737

3838
[dev-dependencies]
3939
tempfile = { workspace = true }

vtcode-llm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ tokio-tungstenite = { version = "0.29", default-features = false, features = ["c
4040
tracing = { workspace = true }
4141
url = { workspace = true }
4242
uuid = { workspace = true, features = ["v4"] }
43-
vtcode-commons = { path = "../vtcode-commons", version = "0.133.20" }
44-
vtcode-config = { path = "../vtcode-config", version = "0.133.20" }
45-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.133.20" }
46-
vtcode-utility-tool-specs = { path = "../vtcode-utility-tool-specs", version = "0.133.20" }
43+
vtcode-commons = { path = "../vtcode-commons", version = "0.133.21" }
44+
vtcode-config = { path = "../vtcode-config", version = "0.133.21" }
45+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.133.21" }
46+
vtcode-utility-tool-specs = { path = "../vtcode-utility-tool-specs", version = "0.133.21" }
4747
anstyle = { workspace = true }
4848
lru = "0.18"
4949
which = "8.0.2"

vtcode-mcp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ tokio = { workspace = true, features = ["fs", "io-util", "macros", "rt-multi-thr
4242
thiserror = { workspace = true }
4343
tracing = { workspace = true }
4444
url = { workspace = true }
45-
vtcode-commons = { path = "../vtcode-commons", version = "0.133.20" }
46-
vtcode-config = { path = "../vtcode-config", version = "0.133.20" }
47-
vtcode-utility-tool-specs = { path = "../vtcode-utility-tool-specs", version = "0.133.20", features = ["mcp"] }
45+
vtcode-commons = { path = "../vtcode-commons", version = "0.133.21" }
46+
vtcode-config = { path = "../vtcode-config", version = "0.133.21" }
47+
vtcode-utility-tool-specs = { path = "../vtcode-utility-tool-specs", version = "0.133.21", features = ["mcp"] }
4848
schemars = { workspace = true, optional = true }
4949
strsim = { workspace = true }
5050

vtcode-safety/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ toml = { workspace = true }
3131
tree-sitter = "0.26"
3232
tree-sitter-bash = "0.25"
3333
tracing = { workspace = true }
34-
vtcode-commons = { path = "../vtcode-commons", version = "0.133.20" }
34+
vtcode-commons = { path = "../vtcode-commons", version = "0.133.21" }
3535

3636
[dev-dependencies]
3737
tempfile = { workspace = true }

0 commit comments

Comments
 (0)