diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3f1463..96f1cd9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0687702..28524bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.3.0](https://github.com/tokentopapp/agent-cursor/compare/v1.2.0...v1.3.0) (2026-02-28) + + +### Features + +* add CSV enrichment, activity watcher, and plugin settings ([415a95a](https://github.com/tokentopapp/agent-cursor/commit/415a95af1297d8092ce89b9a6f3e9970253b0f8e)) +* implement Cursor session parser with SQLite-based storage ([777080e](https://github.com/tokentopapp/agent-cursor/commit/777080e4aae3064abc41c8f744d5153afb52a8af)) +* initial stub for Cursor agent plugin ([0cc46f4](https://github.com/tokentopapp/agent-cursor/commit/0cc46f4f71693ca66b19dbfa22ec2bbc5e58b8bf)) +* set metadata.isEstimated on sessions awaiting CSV enrichment ([742017d](https://github.com/tokentopapp/agent-cursor/commit/742017d2b79183938589ed5d4358c9b6a1ebb906)) + + +### Bug Fixes + +* add bootstrap-sha to prevent stale changelog entries ([0959283](https://github.com/tokentopapp/agent-cursor/commit/0959283736b45cbfb0397bafee5dbb5fe1937f2e)) + ## [1.2.0](https://github.com/tokentopapp/agent-cursor/compare/v1.1.0...v1.2.0) (2026-02-28) diff --git a/package-lock.json b/package-lock.json index 83b7f53..cfde5b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@tokentop/agent-cursor", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@tokentop/agent-cursor", - "version": "1.2.0", + "version": "1.3.0", "license": "MIT", "devDependencies": { "@tokentop/plugin-sdk": "^1.0.1", diff --git a/package.json b/package.json index 3c1bac5..a44b010 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tokentop/agent-cursor", - "version": "1.2.0", + "version": "1.3.0", "description": "Cursor AI editor session tracking", "type": "module", "main": "dist/index.js",