From 18434f2cd9abc33498e705dfde70d80e19223d0f Mon Sep 17 00:00:00 2001 From: Junfeng Li Date: Sat, 18 Apr 2020 13:35:21 -0700 Subject: [PATCH] (cargo-release) version 0.1.157 --- CHANGELOG.md | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- install.ps1 | 2 +- install.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d65dd82..ca26ddd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [Unreleased] +## [0.1.157] ### Added diff --git a/Cargo.lock b/Cargo.lock index 2bfaa4f1..9046d395 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -380,7 +380,7 @@ dependencies = [ [[package]] name = "languageclient" -version = "0.1.156" +version = "0.1.157" dependencies = [ "crossbeam 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "derivative 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 4e06fdcb..0e4b6a9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "languageclient" -version = "0.1.156" +version = "0.1.157" authors = ["Junfeng Li "] description = "Language Server Protocol (LSP) support for vim and neovim" publish = false diff --git a/install.ps1 b/install.ps1 index 37b11286..efcc9b60 100755 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = '0.1.156' +$version = '0.1.157' $name = 'languageclient' $url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/$name-$version-" diff --git a/install.sh b/install.sh index 6cc0f0a8..b8953579 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.156 +version=0.1.157 name=languageclient try_curl() {