From 8cabf68892b7c6de93b4880b6cdf3a375a67420f Mon Sep 17 00:00:00 2001 From: Zhiming Ma Date: Mon, 11 Sep 2023 12:23:02 +0800 Subject: [PATCH] chore: bump VSCode extension version 0.4.0. bump tabby-agent version 0.1.0. (#426) --- clients/intellij/package.json | 2 +- clients/tabby-agent/package.json | 2 +- clients/vim/package.json | 2 +- clients/vscode/CHANGELOG.md | 13 +++++++++++++ clients/vscode/package.json | 4 ++-- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/clients/intellij/package.json b/clients/intellij/package.json index a8a7c2f..0c70b7a 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.1.0-dev" + "tabby-agent": "0.1.0" } } diff --git a/clients/tabby-agent/package.json b/clients/tabby-agent/package.json index 37fe721..918333b 100644 --- a/clients/tabby-agent/package.json +++ b/clients/tabby-agent/package.json @@ -1,6 +1,6 @@ { "name": "tabby-agent", - "version": "0.1.0-dev", + "version": "0.1.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 150a258..9bf5ac9 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.1.0-dev" + "tabby-agent": "0.1.0" } } diff --git a/clients/vscode/CHANGELOG.md b/clients/vscode/CHANGELOG.md index c4f8927..9c7dd41 100644 --- a/clients/vscode/CHANGELOG.md +++ b/clients/vscode/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.4.0 + +Features: + +- Relocated the user data directory from `$HOME/.tabby/agent` to `$HOME/.tabby-client/agent` to avoid conflicts with Tabby server data. Note that the old data will not be migrated automatically. Please update the config file manually if you have made changes in the old path. +- Added a template config file for Tabby client agent located at `$HOME/.tabby-client/agent/config.toml`. +- Improved code suggestion filtering by indentation context. Suggestions now prioritize completing the current line or logic block, preventing excessively long suggestions. +- Added adaptive completion debouncing for auto completion requests. + +Fixes: + +- Resolved conflict with the auto completion widget. The Tabby inline completion will no longer be displayed when the auto completion widget is visible. + ## 0.3.0 Features: diff --git a/clients/vscode/package.json b/clients/vscode/package.json index eec8f57..af68169 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.3.0", + "version": "0.4.0", "keywords": [ "ai", "autocomplete", @@ -197,6 +197,6 @@ }, "dependencies": { "@xstate/fsm": "^2.0.1", - "tabby-agent": "0.1.0-dev" + "tabby-agent": "0.1.0" } }