diff --git a/.changeset/clear-plans-help.md b/.changeset/clear-plans-help.md deleted file mode 100644 index 6f473f4..0000000 --- a/.changeset/clear-plans-help.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@call-e/cli": minor ---- - -Add hierarchical command help and direct help-command recommendations for -invalid CLI arguments. diff --git a/.changeset/safe-calls-recover.md b/.changeset/safe-calls-recover.md deleted file mode 100644 index a046f9e..0000000 --- a/.changeset/safe-calls-recover.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@call-e/cli": minor ---- - -Report staged call workflow failures, retain stable run IDs when status lookup fails, and add private recovery for uncertain call submissions. diff --git a/.changeset/slow-plans-wait.md b/.changeset/slow-plans-wait.md deleted file mode 100644 index 30f2a0f..0000000 --- a/.changeset/slow-plans-wait.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@call-e/cli": patch -"@call-e/core": minor ---- - -Give `plan_call` requests a 150-second CLI default timeout while preserving the -15-second default for other MCP requests and explicit `--timeout-seconds` -overrides. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 59a56e9..c7fe020 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,22 @@ # @call-e/cli +## 0.4.0 + +### Minor Changes + +- [`64227fe`](https://github.com/CALLE-AI/call-e-integrations/commit/64227fe79fec27d01afc8992ed422e0f75be34ec) - Add hierarchical command help and direct help-command recommendations for + invalid CLI arguments. + +- [`d5bf6c1`](https://github.com/CALLE-AI/call-e-integrations/commit/d5bf6c1578f51d35f51d1e4b610a35df88275b8e) - Report staged call workflow failures, retain stable run IDs when status lookup fails, and add private recovery for uncertain call submissions. + +### Patch Changes + +- [`e966ea7`](https://github.com/CALLE-AI/call-e-integrations/commit/e966ea7c7b63e591e8952452a7bba8eda67e9871) - Give `plan_call` requests a 150-second CLI default timeout while preserving the + 15-second default for other MCP requests and explicit `--timeout-seconds` + overrides. +- Updated dependencies [[`e966ea7`](https://github.com/CALLE-AI/call-e-integrations/commit/e966ea7c7b63e591e8952452a7bba8eda67e9871)]: + - @call-e/core@0.3.0 + ## 0.3.9 ### Patch Changes diff --git a/packages/cli/lib/config.js b/packages/cli/lib/config.js index 7f9f7f1..d17da3a 100644 --- a/packages/cli/lib/config.js +++ b/packages/cli/lib/config.js @@ -40,7 +40,7 @@ export const DEFAULT_POLL_TIMEOUT_SECONDS = 300; export const DEFAULT_PLAN_CALL_TIMEOUT_SECONDS = 150; export const DEFAULT_TELEMETRY_TIMEOUT_SECONDS = 1.5; export const DEFAULT_CACHE_ROOT = path.join(os.homedir(), ".calle-mcp", "cli"); -export const CLI_VERSION = "0.3.9"; +export const CLI_VERSION = "0.4.0"; function firstOptionValue(value) { return Array.isArray(value) ? value[0] : value; diff --git a/packages/cli/package.json b/packages/cli/package.json index f2ca2db..939651c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@call-e/cli", - "version": "0.3.9", + "version": "0.4.0", "description": "CLI wrapper for brokered MCP login and CALL-E MCP client configuration.", "type": "module", "license": "MIT", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 34d4dd8..fbfecf5 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @call-e/core +## 0.3.0 + +### Minor Changes + +- [`e966ea7`](https://github.com/CALLE-AI/call-e-integrations/commit/e966ea7c7b63e591e8952452a7bba8eda67e9871) - Give `plan_call` requests a 150-second CLI default timeout while preserving the + 15-second default for other MCP requests and explicit `--timeout-seconds` + overrides. + ## 0.2.5 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 3050dcf..cb79d04 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@call-e/core", - "version": "0.2.5", + "version": "0.3.0", "description": "Shared CALL-E runtime helpers for brokered auth, local token cache, and MCP HTTP calls.", "type": "module", "types": "./lib/index.d.ts",