diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d21381..9ba664d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.3.0 - 2026-04-14 + +### Added +- One-shot success rate per activity category. Detects edit/test/fix retry + cycles (Edit -> Bash -> Edit) within each turn. Shows 1-shot percentage + in the By Activity panel for categories that involve code edits. + +### Fixed +- Turn grouping: tool-result entries (type "user" with no text) no longer + split turns. Previously inflated Conversation category by 3-5x at the + expense of Coding, Debugging, and other edit-heavy categories. + ## 0.2.0 - 2026-04-14 ### Added diff --git a/package.json b/package.json index 51acaf3..be0ea29 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeburn", - "version": "0.2.0", + "version": "0.3.0", "description": "See where your AI coding tokens go - by task, tool, model, and project", "type": "module", "main": "./dist/cli.js", diff --git a/src/cli.ts b/src/cli.ts index 0f24a2f..398af6a 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -48,7 +48,7 @@ function toPeriod(s: string): 'today' | 'week' | 'month' { const program = new Command() .name('codeburn') .description('See where your AI coding tokens go - by task, tool, model, and project') - .version('0.1.0') + .version('0.3.0') program .command('report', { isDefault: true })