diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f7bac3bf..339b53221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## [Unreleased] +## [2.10.6] - 2026-03-13 + +### Added +- Native Rust output truncation module for efficient large-output handling (#268) +- Native Rust xxHash32 hasher for hashline IDs — faster line hashing (#272) +- Native Rust bash stream processor for single-pass chunk processing (#271) +- Memory extraction pipeline (#261) +- `claude-opus-4-6` model with 1M context window (#288) + +### Fixed +- Oversized TUI lines now truncated instead of crashing (#287) +- Anthropic rate limit backoff now respects server-requested retry delay +- CI publish guard: skip main package publish if already on npm + ## [2.10.5] - 2026-03-13 ### Fixed diff --git a/native/npm/darwin-arm64/package.json b/native/npm/darwin-arm64/package.json index 87a32175a..b968fa699 100644 --- a/native/npm/darwin-arm64/package.json +++ b/native/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-darwin-arm64", - "version": "2.10.5", + "version": "2.10.6", "description": "GSD native engine binary for macOS ARM64", "os": [ "darwin" diff --git a/native/npm/darwin-x64/package.json b/native/npm/darwin-x64/package.json index d4b312f57..9cd266654 100644 --- a/native/npm/darwin-x64/package.json +++ b/native/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-darwin-x64", - "version": "2.10.5", + "version": "2.10.6", "description": "GSD native engine binary for macOS Intel", "os": [ "darwin" diff --git a/native/npm/linux-arm64-gnu/package.json b/native/npm/linux-arm64-gnu/package.json index da3956632..cc0cbb165 100644 --- a/native/npm/linux-arm64-gnu/package.json +++ b/native/npm/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-linux-arm64-gnu", - "version": "2.10.5", + "version": "2.10.6", "description": "GSD native engine binary for Linux ARM64 (glibc)", "os": [ "linux" diff --git a/native/npm/linux-x64-gnu/package.json b/native/npm/linux-x64-gnu/package.json index b4d57f2e8..3d9103ef9 100644 --- a/native/npm/linux-x64-gnu/package.json +++ b/native/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-linux-x64-gnu", - "version": "2.10.5", + "version": "2.10.6", "description": "GSD native engine binary for Linux x64 (glibc)", "os": [ "linux" diff --git a/native/npm/win32-x64-msvc/package.json b/native/npm/win32-x64-msvc/package.json index bfd1d0004..12ffcd068 100644 --- a/native/npm/win32-x64-msvc/package.json +++ b/native/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-win32-x64-msvc", - "version": "2.10.5", + "version": "2.10.6", "description": "GSD native engine binary for Windows x64 (MSVC)", "os": [ "win32" diff --git a/package.json b/package.json index 70365f92d..ac35a4ade 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gsd-pi", - "version": "2.10.5", + "version": "2.10.6", "description": "GSD — Get Shit Done coding agent", "license": "MIT", "repository": {