From 989dda9f1bc57536778645c029122d520291c004 Mon Sep 17 00:00:00 2001 From: Zhiming Ma Date: Mon, 23 Oct 2023 16:02:40 +0800 Subject: [PATCH] fix(vim): bump vim plugin version to 1.0.1. (#619) --- clients/vim/CHANGELOG.md | 8 ++++++++ clients/vim/autoload/tabby/globals.vim | 2 +- clients/vim/package.json | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/clients/vim/CHANGELOG.md b/clients/vim/CHANGELOG.md index 3cbc0afb547e..7c24778ea3fc 100644 --- a/clients/vim/CHANGELOG.md +++ b/clients/vim/CHANGELOG.md @@ -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 `` key can not fallback to the default behavior. +- Fixed a bug causing the completion replace range is rendered incorrectly. + ## 1.0.0 ### Initial release diff --git a/clients/vim/autoload/tabby/globals.vim b/clients/vim/autoload/tabby/globals.vim index 34eba03b09d7..c24f5ec7a349 100644 --- a/clients/vim/autoload/tabby/globals.vim +++ b/clients/vim/autoload/tabby/globals.vim @@ -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 \ No newline at end of file diff --git a/clients/vim/package.json b/clients/vim/package.json index d0751b9ba66a..f1b430086d2c 100644 --- a/clients/vim/package.json +++ b/clients/vim/package.json @@ -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": {