Skip to content

Commit 72237e6

Browse files
authored
fix: revert version bump to 3.9.1 for clean publish (#894)
The v3.9.2 release PR (#891) bumped package.json and Cargo.toml to 3.9.2 while optionalDependencies still pointed to 3.9.1. This caused preflight tests to fail because the installed native binary (3.9.1) mismatched the declared version (3.9.2). Reverting to 3.9.1 so the publish workflow can bump versions atomically after building native binaries at the correct version.
1 parent 68e6fda commit 72237e6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

crates/codegraph-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codegraph-core"
3-
version = "3.9.2"
3+
version = "3.9.1"
44
edition = "2021"
55
license = "Apache-2.0"
66

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optave/codegraph",
3-
"version": "3.9.2",
3+
"version": "3.9.1",
44
"description": "Local code graph CLI — parse codebases with tree-sitter, build dependency graphs, query them",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)