be5c8f8bfd
Bump the workspace, every published crate, the npm CLI package and its codewhaleBinaryVersion, the runtime SDK, and the VS Code extension to 0.9.6 — the four version sources the release workflow cross-checks before it will tag. The changelog entry describes v0.9.6 as what it is: a subtractive release. The guards that interrupted live work, the per-mode prompt doctrine, and the deterministic second compaction system are gone; a truncated provider response can no longer be recorded as a finished answer. Most of these were found by running v0.9.5 against Terminal-Bench 2.1 beside Pi 0.8.41 on the same model, effort, endpoint, and task digests, then reading the trials Codewhale lost — so the entry names those trials rather than describing the fixes in the abstract. Mistral AI ships in this release; Xavier Pestel (@xavierpestel-ai) is credited in the contributors section for #5295.
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "codewhale",
|
|
"version": "0.9.6",
|
|
"codewhaleBinaryVersion": "0.9.6",
|
|
"description": "Terminal coding agent for supported hosted and local models. One runtime on your machine. Rust, MIT.",
|
|
"author": "Hmbown",
|
|
"license": "MIT",
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/Hmbown"
|
|
},
|
|
{
|
|
"type": "buymeacoffee",
|
|
"url": "https://www.buymeacoffee.com/hmbown"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/Hmbown/CodeWhale",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Hmbown/CodeWhale.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Hmbown/CodeWhale/issues"
|
|
},
|
|
"keywords": [
|
|
"codewhale",
|
|
"deepseek",
|
|
"cli",
|
|
"tui",
|
|
"rust",
|
|
"binary",
|
|
"terminal"
|
|
],
|
|
"type": "commonjs",
|
|
"bin": {
|
|
"codewhale": "bin/codewhale.js",
|
|
"codew": "bin/codew.js"
|
|
},
|
|
"scripts": {
|
|
"release:check": "node scripts/verify-release-assets.js",
|
|
"postinstall": "node scripts/install.js --optional",
|
|
"prepublishOnly": "bash ../../scripts/release/require-release-tag-checkout.sh && bash ../../scripts/release/verify-release-assets.sh",
|
|
"prepack": "node scripts/install.js",
|
|
"test": "node --test test/*.test.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"preferGlobal": true,
|
|
"files": [
|
|
"bin/*.js",
|
|
"scripts/*.js",
|
|
"test/*.js",
|
|
"README.md",
|
|
"package.json"
|
|
]
|
|
}
|