Skip to content

Commit 14d1717

Browse files
committed
fix: revert version bump to 3.9.1 for clean publish
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 14d1717

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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)