fix(vim): bump vim plugin version to 1.0.1. (#619)
parent
43fe801e73
commit
989dda9f1b
|
|
@ -1,3 +1,11 @@
|
|||
## 1.0.1
|
||||
|
||||
### Fixes:
|
||||
|
||||
- Fixed when resolving the server address, it will now try to prefer to use ipv4 over ipv6.
|
||||
- Fixed a bug causing the `<Tab>` key can not fallback to the default behavior.
|
||||
- Fixed a bug causing the completion replace range is rendered incorrectly.
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Initial release
|
||||
|
|
|
|||
|
|
@ -50,5 +50,5 @@ function! tabby#globals#Load()
|
|||
|
||||
|
||||
" Version of Tabby plugin. Not configurable.
|
||||
let g:tabby_version = "1.0.0"
|
||||
let g:tabby_version = "1.0.1"
|
||||
endfunction
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vim-tabby",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Vim plugin for Tabby AI coding assistant.",
|
||||
"repository": "https://github.com/TabbyML/tabby",
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue