diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a12bb41c..cef15a54c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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/). +## [0.1.160] + +### Fixed +- Fix issue with Sorbet sending an extra field on the messages it sends (#1115) + ## [0.1.159] ### Added diff --git a/Cargo.lock b/Cargo.lock index 00508dcc4..94ab47f35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "languageclient" -version = "0.1.159" +version = "0.1.160" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index be00958a1..25d4a82f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "languageclient" -version = "0.1.159" +version = "0.1.160" authors = ["Junfeng Li "] description = "Language Server Protocol (LSP) support for vim and neovim" publish = false diff --git a/install.ps1 b/install.ps1 index 8d4c25987..1728b2b02 100755 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = '0.1.159' +$version = '0.1.160' $name = 'languageclient' $url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/$name-$version-" diff --git a/install.sh b/install.sh index 066ff2ae3..7eada7eb3 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.159 +version=0.1.160 name=languageclient arch=$(uname -sm)