diff --git a/CHANGELOG.md b/CHANGELOG.md index 233e7acb3..93576b59f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [4.0.11] - 2026-04-23 + +### 变更 + +- **Bin**: bin 命令统一为 `csc`,移除 `ccb`、`ccb-bun`、`claude-code-best` + ## [4.0.10] - 2026-04-23 ### 修复 diff --git a/package.json b/package.json index b25c450c1..1fb4a57a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@costrict/csc", - "version": "4.0.10", + "version": "4.0.11", "description": "costrict", "type": "module", "author": "claude-code-best ", @@ -25,9 +25,7 @@ "bun": ">=1.2.0" }, "bin": { - "ccb": "dist/cli-node.js", - "ccb-bun": "dist/cli-bun.js", - "claude-code-best": "dist/cli-node.js" + "csc": "dist/cli-node.js" }, "workspaces": [ "packages/*", diff --git a/scripts/defines.ts b/scripts/defines.ts index 2530eed60..19f494f93 100644 --- a/scripts/defines.ts +++ b/scripts/defines.ts @@ -7,7 +7,7 @@ */ export function getMacroDefines(): Record { return { - "MACRO.VERSION": JSON.stringify("4.0.10"), + "MACRO.VERSION": JSON.stringify("4.0.11"), "MACRO.BUILD_TIME": JSON.stringify(new Date().toISOString()), "MACRO.FEEDBACK_CHANNEL": JSON.stringify(""), "MACRO.ISSUES_EXPLAINER": JSON.stringify(""),