Skip to content

Commit 26895e1

Browse files
committed
release: prep for engine-v0.2.0 + .brxt v0.1.0 (bio languages)
- Bumped engine to 0.9.7-bio.1 (upstream + R/Julia/MATLAB/Perl patches) - Bumped release_manifest pin to engine-v0.2.0 (SHAs reset to placeholders; CI workflow regenerates them) - README + CHANGELOG document the new language support
1 parent 89a772b commit 26895e1

4 files changed

Lines changed: 19 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

3-
## v0.1.0-rc1 (in progress)
3+
## v0.1.0 (in progress)
4+
5+
- Added 4 new language extractors via Plan 2: R, Julia, MATLAB, Perl.
6+
- Engine bumped to `engine-v0.2.0` (vendored from upstream v0.9.7 with bio-language patches).
7+
- `.m` extension now content-disambiguated between MATLAB and Objective-C.
8+
- 31 new engine tests covering the new languages (1123 total passing).
9+
10+
## v0.1.0-rc1 (2026-05-30)
411

512
- Initial release scaffolding.
613
- Python proxy shim (paths, bootstrap, proxy, error shim).

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ trace) via a vendored fork of [CodeGraph](https://github.com/colbymchenry/codegr
66

77
## What it does
88

9+
**New in v0.1.0:** Adds R, Julia, MATLAB, and Perl language support on top of upstream's 19 languages.
10+
911
CodeGraphAgent installs into a BioRouter session and exposes 10 MCP tools
1012
(`codegraph_search`, `codegraph_callers`, `codegraph_callees`,
1113
`codegraph_trace`, `codegraph_impact`, `codegraph_node`, `codegraph_explore`,

engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@colbymchenry/codegraph",
3-
"version": "0.9.7",
3+
"version": "0.9.7-bio.1",
44
"description": "Supercharge Claude Code with semantic code intelligence. 94% fewer tool calls • 77% faster exploration • 100% local.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"engine_version": "0.1.0",
3-
"base_url": "https://github.com/Broccolito/CodeGraphAgent/releases/download/engine-v0.1.0/",
2+
"engine_version": "0.2.0",
3+
"base_url": "https://github.com/Broccolito/CodeGraphAgent/releases/download/engine-v0.2.0/",
44
"platforms": {
5-
"darwin-arm64": {"filename": "codegraph-darwin-arm64.tar.gz", "sha256": "3da9e8e76bc406ee26b517b0ad9d8cf90c50797470cc87926a81fa6698d72bbb"},
6-
"darwin-x64": {"filename": "codegraph-darwin-x64.tar.gz", "sha256": "355d951f8f6cc21c7457e115622adf5b2044e88f2f2dd9ebec27dfb480540741"},
7-
"linux-x64": {"filename": "codegraph-linux-x64.tar.gz", "sha256": "3ac2f511e9819c423b2dd434cf155458499aab88cd40161cf3c6b04a5e451a70"},
8-
"linux-arm64": {"filename": "codegraph-linux-arm64.tar.gz", "sha256": "e152addb8fff4090b4573248a029dacecab67db53107f8a5eef4a8bd6c911eed"},
9-
"win32-x64": {"filename": "codegraph-win32-x64.zip", "sha256": "db7f9a8f48d78e5f58e9219459459c3b9a2c235d9a6a0be96faa38d3ce910614"},
10-
"win32-arm64": {"filename": "codegraph-win32-arm64.zip", "sha256": "06dfc08695ddc94e3d16826dd492f71ec79c30e4ee98e8ab8ae067887576912e"}
5+
"darwin-arm64": {"filename": "codegraph-darwin-arm64.tar.gz", "sha256": "PLACEHOLDER_FILLED_AT_RELEASE"},
6+
"darwin-x64": {"filename": "codegraph-darwin-x64.tar.gz", "sha256": "PLACEHOLDER_FILLED_AT_RELEASE"},
7+
"linux-x64": {"filename": "codegraph-linux-x64.tar.gz", "sha256": "PLACEHOLDER_FILLED_AT_RELEASE"},
8+
"linux-arm64": {"filename": "codegraph-linux-arm64.tar.gz", "sha256": "PLACEHOLDER_FILLED_AT_RELEASE"},
9+
"win32-x64": {"filename": "codegraph-win32-x64.zip", "sha256": "PLACEHOLDER_FILLED_AT_RELEASE"},
10+
"win32-arm64": {"filename": "codegraph-win32-arm64.zip", "sha256": "PLACEHOLDER_FILLED_AT_RELEASE"}
1111
}
1212
}

0 commit comments

Comments
 (0)