diff --git a/Cargo.toml b/Cargo.toml index d8ca8018b..2f1cb2e3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "languageclient" -version = "0.1.13" +version = "0.1.14" authors = ["Junfeng Li "] description = "Language Server Protocol (LSP) support for vim and neovim" publish = false diff --git a/install.ps1 b/install.ps1 index 4e7a70dbe..5431aec39 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,4 +1,4 @@ -$version = '0.1.13' +$version = '0.1.14' $name = 'languageclient' $url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/" $filename = "$name-$version-" diff --git a/install.sh b/install.sh index 509fce266..b34c607d0 100755 --- a/install.sh +++ b/install.sh @@ -7,7 +7,7 @@ set -o nounset # error when referencing undefined variable set -o errexit # exit when command fails set -o pipefail -version=0.1.13 +version=0.1.14 name=languageclient function try_curl() {