diff --git a/clients/intellij/package.json b/clients/intellij/package.json index 4537f6e..b98479b 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.4.0-dev" + "tabby-agent": "1.0.0" } } diff --git a/clients/tabby-agent/package.json b/clients/tabby-agent/package.json index 937ca8b..e752b26 100644 --- a/clients/tabby-agent/package.json +++ b/clients/tabby-agent/package.json @@ -1,6 +1,6 @@ { "name": "tabby-agent", - "version": "0.4.0-dev", + "version": "1.0.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 ae41a5d..df8eaa9 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.4.0-dev" + "tabby-agent": "1.0.0" } } diff --git a/clients/vscode/CHANGELOG.md b/clients/vscode/CHANGELOG.md index a35b2a3..4750425 100644 --- a/clients/vscode/CHANGELOG.md +++ b/clients/vscode/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.0 + +### Changes: + +- Added auto-closing character check to improve inline completion experience. This improvement ensures proper handling of scenarios involving missing or duplicate closing characters. +- Optimized completion caching for better efficiency, especially when a completion is partially accepted. +- Updated the config.toml template file by removing deprecated options. + ## 0.6.1 ### Fixes: diff --git a/clients/vscode/README.md b/clients/vscode/README.md index d507c78..7c54eda 100644 --- a/clients/vscode/README.md +++ b/clients/vscode/README.md @@ -18,7 +18,7 @@ Try our online demo [here](https://tabby.tabbyml.com/playground). ![Demo](https://tabby.tabbyml.com/img/demo.gif) -## Get Started +## Getting Started Once you have installed the Tabby VSCode extension, you can easily get started by following the built-in walkthrough guides. You can access the walkthrough page at any time by using the command `Tabby: Getting Started`. diff --git a/clients/vscode/package.json b/clients/vscode/package.json index 93bd318..f7adefc 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": "1.0.0-dev", + "version": "1.0.0", "keywords": [ "ai", "autocomplete", @@ -217,6 +217,6 @@ }, "dependencies": { "@xstate/fsm": "^2.0.1", - "tabby-agent": "0.4.0-dev" + "tabby-agent": "1.0.0" } }