diff --git a/clients/intellij/package.json b/clients/intellij/package.json index 6261b1b..650f970 100644 --- a/clients/intellij/package.json +++ b/clients/intellij/package.json @@ -10,6 +10,6 @@ "devDependencies": { "cpy-cli": "^4.2.0", "rimraf": "^5.0.1", - "tabby-agent": "0.3.0-dev" + "tabby-agent": "0.3.0" } } diff --git a/clients/tabby-agent/package.json b/clients/tabby-agent/package.json index 838d423..036b4b7 100644 --- a/clients/tabby-agent/package.json +++ b/clients/tabby-agent/package.json @@ -1,6 +1,6 @@ { "name": "tabby-agent", - "version": "0.3.0-dev", + "version": "0.3.0", "description": "Generic client agent for Tabby AI coding assistant IDE extensions.", "repository": "https://github.com/TabbyML/tabby", "main": "./dist/index.js", diff --git a/clients/vim/package.json b/clients/vim/package.json index 953f855..7187b64 100644 --- a/clients/vim/package.json +++ b/clients/vim/package.json @@ -10,6 +10,6 @@ "devDependencies": { "cpy-cli": "^4.2.0", "rimraf": "^5.0.1", - "tabby-agent": "0.3.0-dev" + "tabby-agent": "0.3.0" } } diff --git a/clients/vscode/CHANGELOG.md b/clients/vscode/CHANGELOG.md index 1f89e51..7b54f22 100644 --- a/clients/vscode/CHANGELOG.md +++ b/clients/vscode/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.6.0 + +### Features: + +- Added manual trigger for inline completion. With the manual trigger mode, you can now use the `Alt + \` hotkey to manually trigger inline completion. This mode can be selected in the extension settings, replacing the old enable/disable inline completion option. +- Improved anonymous usage tracking. Your contribution in sending anonymous usage data is greatly appreciated. However, if you prefer not to participate, you have the option to opt out of this feature within the extension settings. + +### Fixes: + +- Fixed completion `view` / `select` event logging. +- Adjusted notifications for `highCompletionTimeoutRate` and `slowCompletionResponseTime` to be displayed only once per session. + ## 0.5.0 ### Incompatible Changes: diff --git a/clients/vscode/package.json b/clients/vscode/package.json index f9c4a48..cf8a38c 100644 --- a/clients/vscode/package.json +++ b/clients/vscode/package.json @@ -7,7 +7,7 @@ "repository": "https://github.com/TabbyML/tabby", "bugs": "https://github.com/TabbyML/tabby/issues", "license": "Apache-2.0", - "version": "0.6.0-dev", + "version": "0.6.0", "keywords": [ "ai", "autocomplete", @@ -217,6 +217,6 @@ }, "dependencies": { "@xstate/fsm": "^2.0.1", - "tabby-agent": "0.3.0-dev" + "tabby-agent": "0.3.0" } }