diff --git a/CHANGELOG.md b/CHANGELOG.md index 050c3b4ada..e3b7ea5e10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [3.70.0] + +### Added + +- New Cline API docs: Getting Started, Auth, Chat Completions, Models, Errors, and SDK Examples +- Hook payloads now include `model.provider` and `model.slug` +- Token/cost updates now happen immediately as usage chunks arrive, not after tool execution + +### Fixed + +- Improve subagent context compaction logic +- Subagent stream retry delay increased to reduce noise from transient failures +- State serialization errors are now caught and logged instead of crashing +- Removed incorrect `max_tokens` from OpenRouter requests + +### Changed + +- Windows test cleanup now retries on locked files and applies per-test timeouts +- Updated hooks docs + + ## [3.69.0] ### Added diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index ff06859d44..205bbd920b 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,19 @@ # cline +## [2.6.0] + +### Added + +- Hook payloads now include `model.provider` and `model.slug` +- Token/cost updates now happen immediately as usage chunks arrive, not after tool execution + +### Fixed + +- Improve subagent context compaction logic +- Subagent stream retry delay increased to reduce noise from transient failures +- State serialization errors are now caught and logged instead of crashing +- Removed incorrect `max_tokens` from OpenRouter requests + ## [2.5.2] ### Added diff --git a/cli/package.json b/cli/package.json index 3160421fdf..8c328c05e9 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "cline", - "version": "2.5.2", + "version": "2.6.0", "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more", "main": "dist/lib.mjs", "types": "dist/lib.d.ts", diff --git a/package-lock.json b/package-lock.json index f8d9040ce9..4b84837efa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "claude-dev", - "version": "3.69.0", + "version": "3.70.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "claude-dev", - "version": "3.69.0", + "version": "3.70.0", "license": "Apache-2.0", "workspaces": [ ".", @@ -161,7 +161,7 @@ }, "cli": { "name": "cline", - "version": "2.5.0", + "version": "2.6.0", "cpu": [ "x64", "arm64" diff --git a/package.json b/package.json index bcfabe8cba..f2dcf2580a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "claude-dev", "displayName": "Cline", "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.", - "version": "3.69.0", + "version": "3.70.0", "icon": "assets/icons/icon.png", "workspaces": [ ".",