From b8d9aaef16dd219febde938c051360e4d579fa2b Mon Sep 17 00:00:00 2001 From: Colby McHenry Date: Thu, 21 May 2026 16:08:02 -0500 Subject: [PATCH] release: 0.9.1 (fix curl-install launcher; publish all platform packages) Co-Authored-By: Claude Opus 4.7 (1M context) --- CHANGELOG.md | 13 +++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc77c3c..7bf3686 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ a [GitHub Release](https://github.com/colbymchenry/codegraph/releases) tagged This project follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.1] - 2026-05-21 + +### Fixed +- **Standalone installers** (`curl … | sh`, `irm … | iex`): the bundled launcher + failed with `exec: …/node: not found` because it didn't resolve the symlink the + installer puts on your PATH. Installing on a machine with **no Node** now works. +- **npm**: `@colbymchenry/codegraph-linux-x64` is now published — the 0.9.0 + release silently shipped 6 of 7 packages, so `npm i -g` on linux-x64 couldn't + find its bundle. The release pipeline now verifies every package reached the + registry (and is idempotent), so a release can't pass green-but-broken again. + +[0.9.1]: https://github.com/colbymchenry/codegraph/releases/tag/v0.9.1 + ## [0.9.0] - 2026-05-21 ### 🎉 Self-contained: CodeGraph bundles its own runtime — install anywhere, on any Node (or none) diff --git a/package-lock.json b/package-lock.json index abe77d4..05a3724 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@colbymchenry/codegraph", - "version": "0.9.0", + "version": "0.9.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@colbymchenry/codegraph", - "version": "0.9.0", + "version": "0.9.1", "license": "MIT", "dependencies": { "@clack/prompts": "^1.3.0", diff --git a/package.json b/package.json index 875aa13..bdf1d6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@colbymchenry/codegraph", - "version": "0.9.0", + "version": "0.9.1", "description": "Supercharge Claude Code with semantic code intelligence. 94% fewer tool calls • 77% faster exploration • 100% local.", "main": "dist/index.js", "types": "dist/index.d.ts",