diff --git a/Cargo.lock b/Cargo.lock index 0bbe72fea..05185e663 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -321,7 +321,7 @@ dependencies = [ [[package]] name = "languageclient" -version = "0.1.152" +version = "0.1.153" dependencies = [ "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 0fcbb9beb..5d373a779 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "languageclient" -version = "0.1.152" +version = "0.1.153" authors = ["Junfeng Li "] description = "Language Server Protocol (LSP) support for vim and neovim" publish = false diff --git a/install.ps1 b/install.ps1 index 20675a050..a852f14d7 100755 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = '0.1.152' +$version = '0.1.153' $name = 'languageclient' $url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/$name-$version-" diff --git a/install.sh b/install.sh index ba63dbb53..931473198 100755 --- a/install.sh +++ b/install.sh @@ -6,7 +6,7 @@ set -o nounset # error when referencing undefined variable set -o errexit # exit when command fails -version=0.1.152 +version=0.1.153 name=languageclient try_curl() { @@ -41,7 +41,7 @@ try_build() { bin=bin/languageclient if [ -f "$bin" ]; then - installed_version=0.1.152 + installed_version=0.1.153 case "${installed_version}" in *${version}*) echo "Version is equal to ${version}, skip install." ; exit 0 ;; *) rm -f "$bin" ;;