From 044c6d568ec4da465dd6b526cca3b841ec0bab58 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Thu, 12 Mar 2026 07:37:08 -0700 Subject: [PATCH] v0.0.2 Co-Authored-By: Claude Opus 4.6 --- CHANGELOG.md | 14 ++++++++++++++ VERSION | 2 +- package.json | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4561c69e1ce71507ce6766e357d3e6115fe3e64b..677849f8db5978d3760ceb57be440467702769ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.0.2 — 2026-03-12 + +- Fix project-local `/browse` installs — compiled binary now resolves `server.ts` from its own directory instead of assuming a global install exists +- `setup` rebuilds stale binaries (not just missing ones) and exits non-zero if the build fails +- Fix `chain` command swallowing real errors from write commands (e.g. navigation timeout reported as "Unknown meta command") +- Fix unbounded restart loop in CLI when server crashes repeatedly on the same command +- Cap console/network buffers at 50k entries (ring buffer) instead of growing without bound +- Fix disk flush stopping silently after buffer hits the 50k cap +- Fix `ln -snf` in setup to avoid creating nested symlinks on upgrade +- Use `git fetch && git reset --hard` instead of `git pull` for upgrades (handles force-pushes) +- Simplify install: global-first with optional project copy (replaces submodule approach) +- Restructured README: hero, before/after, demo transcript, troubleshooting section +- Six skills (added `/retro`) + ## 0.0.1 — 2026-03-11 Initial release. diff --git a/VERSION b/VERSION index 8acdd82b765e8e0b8cd8787f7f18c7fe2ec52493..4e379d2bfeab6461d0455bf5bbb8792845d9bbea 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.1 +0.0.2 diff --git a/package.json b/package.json index 9f3bb207e0c1ae9498184af70e59a53dcb71c5c0..d486f91f6d232ddb8c178a72738c7dfb9b4bcfaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gstack", - "version": "0.0.1", + "version": "0.0.2", "description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.", "license": "MIT", "type": "module",