Skip to content

Commit

Permalink
(cargo-release) version 0.1.153
Browse files Browse the repository at this point in the history
  • Loading branch information
autozimu committed Sep 15, 2019
1 parent dd22b84 commit 224aba6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "languageclient"
version = "0.1.152"
version = "0.1.153"
authors = ["Junfeng Li <[email protected]>"]
description = "Language Server Protocol (LSP) support for vim and neovim"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
@@ -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-"

Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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" ;;
Expand Down

0 comments on commit 224aba6

Please sign in to comment.