diff --git a/.changeset/fix-per-step-timing.md b/.changeset/fix-per-step-timing.md deleted file mode 100644 index 3da7d86..0000000 --- a/.changeset/fix-per-step-timing.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'codsh-bundle': patch ---- - -fix(timing): calculate individual step duration for each thought segment on resume and live execution - -Previously, `totalSeconds` calculated on resume and at the end of a turn incorrectly used the entire multi-step conversation turn duration (e.g. 10 minutes), causing every thought segment in the same turn to display identical long total durations. Thinking duration and total segment elapsed time are now calculated per step (from `step/start` to `step/end`), accurately reporting the exact start-to-finish duration for each output segment independently. diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index 7c56fd4..b4d8e03 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -1,5 +1,13 @@ # codsh-bundle +## 0.17.7 + +### Patch Changes + +- 0b0e20d: fix(timing): calculate individual step duration for each thought segment on resume and live execution + + Previously, `totalSeconds` calculated on resume and at the end of a turn incorrectly used the entire multi-step conversation turn duration (e.g. 10 minutes), causing every thought segment in the same turn to display identical long total durations. Thinking duration and total segment elapsed time are now calculated per step (from `step/start` to `step/end`), accurately reporting the exact start-to-finish duration for each output segment independently. + ## 0.17.6 ### Patch Changes diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 60694ab..29b0598 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,7 +1,7 @@ { "name": "codsh-bundle", "description": "The codsh runtime: the interactive TTY surface and code-cli agent preset, installed into a dsh profile. Users install codsh-cli (the launcher) — this package is what it registers.", - "version": "0.17.6", + "version": "0.17.7", "type": "module", "license": "MIT", "main": "lib/index.js", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 622013c..167eea1 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # codsh +## 0.17.7 + ## 0.17.6 ## 0.17.5 diff --git a/packages/cli/package.json b/packages/cli/package.json index 43119af..8d8a205 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "codsh-cli", "description": "A Claude Code-style coding agent for the terminal, composed on the DeepSeek Harness (dsh). This is the zero-dependency launcher: it finds your dsh, registers the codsh-bundle runtime into a profile, and boots it.", - "version": "0.17.6", + "version": "0.17.7", "type": "module", "license": "MIT", "bin": {