From 0466991828373358130742e4a700b13d99209c48 Mon Sep 17 00:00:00 2001 From: Junfeng Li Date: Sun, 15 Sep 2019 13:18:04 -0700 Subject: [PATCH] (cargo-release) version 0.1.152 --- Cargo.lock | 2 +- Cargo.toml | 2 +- install.ps1 | 2 +- install.sh | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7486e9e2f..0bbe72fea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -321,7 +321,7 @@ dependencies = [ [[package]] name = "languageclient" -version = "0.1.151" +version = "0.1.152" 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 d3305eb71..0fcbb9beb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "languageclient" -version = "0.1.151" +version = "0.1.152" authors = ["Junfeng Li "] description = "Language Server Protocol (LSP) support for vim and neovim" publish = false diff --git a/install.ps1 b/install.ps1 index 658c12f00..20675a050 100755 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = '0.1.151' +$version = '0.1.152' $name = 'languageclient' $url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/$name-$version-" diff --git a/install.sh b/install.sh index a43dbac6a..ba63dbb53 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.151 +version=0.1.152 name=languageclient try_curl() { @@ -41,7 +41,7 @@ try_build() { bin=bin/languageclient if [ -f "$bin" ]; then - installed_version=0.1.151 + installed_version=0.1.152 case "${installed_version}" in *${version}*) echo "Version is equal to ${version}, skip install." ; exit 0 ;; *) rm -f "$bin" ;;