diff --git a/Cargo.toml b/Cargo.toml index fb59b924..c0724c5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "languageclient" -version = "0.1.1" +version = "0.1.2" authors = ["Junfeng Li "] description = "Language Server Protocol (LSP) support for vim and neovim" publish = false diff --git a/install.ps1 b/install.ps1 index c63b8657..98312d48 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,4 +1,4 @@ -$version = '0.1.0' +$version = '0.1.2' $name = 'languageclient' $url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/" $filename = "$name-$version-" diff --git a/install.sh b/install.sh index a3dd3c67..46fce807 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.1 +version=0.1.2 name=languageclient function try_curl() {