chore(vscode): bump vscode extension & tabby-agent version to 1.0.0. (#609)
parent
487f5a6976
commit
3b4717fd47
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ Try our online demo [here](https://tabby.tabbyml.com/playground).
|
|||
|
||||

|
||||
|
||||
## 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`.
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue