Skip to content

Commit 2cf0ae0

Browse files
committed
chore(release): bump version to {{version}}
1 parent e192bf7 commit 2cf0ae0

13 files changed

Lines changed: 54 additions & 54 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtcode"
3-
version = "0.68.1"
3+
version = "0.68.2"
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"
@@ -44,7 +44,7 @@ pretty_assertions = "1.4"
4444
libc = "0.2"
4545

4646
[workspace.package]
47-
version = "0.68.1"
47+
version = "0.68.2"
4848
edition = "2021"
4949
license = "MIT"
5050

@@ -113,9 +113,9 @@ unwrap_used = "deny"
113113

114114

115115
[dependencies]
116-
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.68.1" }
117-
vtcode-config = { path = "vtcode-config", version = "0.68.1" }
118-
vtcode-core = { path = "vtcode-core", version = "0.68.1" }
116+
vtcode-acp-client = { path = "vtcode-acp-client", version = "0.68.2" }
117+
vtcode-config = { path = "vtcode-config", version = "0.68.2" }
118+
vtcode-core = { path = "vtcode-core", version = "0.68.2" }
119119
anyhow = { workspace = true }
120120
clap = { version = "4.5", features = ["derive"] }
121121
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.68.1"
3+
version = "0.68.2"
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.68.1"
3+
version = "0.68.2"
44
edition = "2024"
55
description = "Cross-platform shell execution helpers extracted from VT Code"
66
license = "MIT"
@@ -26,9 +26,9 @@ parking_lot = "0.12"
2626
path-clean = "1.0"
2727
shell-escape = "0.1"
2828
tokio = { version = "1.0", features = ["sync", "macros", "rt"] }
29-
vtcode-commons = { path = "../vtcode-commons", version = "0.68.1" }
29+
vtcode-commons = { path = "../vtcode-commons", version = "0.68.2" }
3030
serde = { version = "1.0", features = ["derive"], optional = true }
31-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.68.1", optional = true }
31+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.68.2", optional = true }
3232

3333
[lints]
3434
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.68.1"
3+
version = "0.68.2"
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.68.1"
3+
version = "0.68.2"
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.68.1" }
29+
vtcode-commons = { path = "../vtcode-commons", version = "0.68.2" }
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.68.1"
3+
version = "0.68.2"
44
edition = "2024"
55
authors = ["vinhnx <vinhnx@users.noreply.github.com>"]
66
description = "Core library for VT Code - a Rust-based terminal coding agent"
@@ -114,7 +114,7 @@ tui-popup = "0.7"
114114
perg = "0.8.0"
115115
nucleo-matcher = "0.3"
116116
line-clipping = "0.3"
117-
vtcode-file-search = { version = "0.68.1", path = "../vtcode-file-search" }
117+
vtcode-file-search = { version = "0.68.2", path = "../vtcode-file-search" }
118118
pulldown-cmark = { version = "0.13", default-features = false, features = [
119119
"simd",
120120
] }
@@ -125,11 +125,11 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
125125
vt100 = "0.15.2"
126126
portable-pty = "0.9.0"
127127
ansi-to-tui = "8.0.0"
128-
vtcode-commons = { path = "../vtcode-commons", version = "0.68.1" }
129-
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.68.1" }
130-
vtcode-config = { path = "../vtcode-config", version = "0.68.1" }
131-
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.68.1" }
132-
vtcode-indexer = { path = "../vtcode-indexer", version = "0.68.1" }
128+
vtcode-commons = { path = "../vtcode-commons", version = "0.68.2" }
129+
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.68.2" }
130+
vtcode-config = { path = "../vtcode-config", version = "0.68.2" }
131+
vtcode-markdown-store = { path = "../vtcode-markdown-store", version = "0.68.2" }
132+
vtcode-indexer = { path = "../vtcode-indexer", version = "0.68.2" }
133133

134134
# Schema generation
135135
schemars = { workspace = true, optional = true }
@@ -163,7 +163,7 @@ tower-http = { version = "0.6", features = ["cors", "trace"], optional = true }
163163
tokio-stream = { version = "0.1", optional = true }
164164

165165
[build-dependencies]
166-
vtcode-config = { path = "../vtcode-config", version = "0.68.1" }
166+
vtcode-config = { path = "../vtcode-config", version = "0.68.2" }
167167

168168
[target.'cfg(target_os = "linux")'.dependencies]
169169
libc = "0.2"

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.68.1"
3+
version = "0.68.2"
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.68.1"
3+
version = "0.68.2"
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.68.1"
3+
version = "0.68.2"
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)