diff --git a/CHANGELOG.md b/CHANGELOG.md index cef15a54..cfbf867a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ 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.162] + +## [0.1.161] + +### Fixed +- Fix incorrect deserialization of completion items in NCM2 (#1151) +- Fix markdown syntax on hover (#1039) +- Fix diagnostics signs logic (#1126) + +### Added +- Add support for initialization options in server command (#1116) +- Add function to execute code action by kind (#1160) +- Add support for rust-analyzer chaining hints (#1108) +- Add parameter to explainErrorAtPoint to enable running silently (#1143) +- Use separate namespace for document and diagnostic highlights (#1145) +- Add LanguageClient_codeLensDisplay config (#1144) +- Add completion item documentation (#1043) +- Do not send notifications/requests for buffers without a configured server (#1121) +- Add support for document highlight on vim8 (#1123) +- Add automatic server restart on crash (#1113) + ## [0.1.160] ### Fixed diff --git a/Cargo.lock b/Cargo.lock index b111bbfb..bcb12e4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "languageclient" -version = "0.1.160" +version = "0.1.161" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index d1ff2f99..b371f752 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "languageclient" -version = "0.1.160" +version = "0.1.161" authors = ["Junfeng Li "] description = "Language Server Protocol (LSP) support for vim and neovim" publish = false diff --git a/install.ps1 b/install.ps1 index 1728b2b0..2d624242 100755 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ #!/usr/bin/env pwsh -$version = '0.1.160' +$version = '0.1.161' $name = 'languageclient' $url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/$name-$version-" diff --git a/install.sh b/install.sh index 7eada7eb..558a6bfe 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.160 +version=0.1.161 name=languageclient arch=$(uname -sm)