From 303cee166569a925e9ea55876bcbd65064a0ed5a Mon Sep 17 00:00:00 2001 From: carlos-alm <127798846+carlos-alm@users.noreply.github.com> Date: Tue, 3 Mar 2026 19:31:18 -0700 Subject: [PATCH] fix: bump native engine version to 3.0.0 (#305) Cargo.toml was still at 2.6.0 after the v3.0.0 release, causing codegraph info to report a stale native version and potentially triggering unnecessary full rebuilds from version mismatch detection. --- crates/codegraph-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/codegraph-core/Cargo.toml b/crates/codegraph-core/Cargo.toml index 36aab6b2..64c042f0 100644 --- a/crates/codegraph-core/Cargo.toml +++ b/crates/codegraph-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codegraph-core" -version = "2.6.0" +version = "3.0.0" edition = "2021" license = "Apache-2.0"