From a42594c9c320b1283e9b9058b85a8097d8325fed Mon Sep 17 00:00:00 2001
From: Martin Asquino <martin.asquino@gmail.com>
Date: Thu, 10 Dec 2020 19:58:40 -0300
Subject: [PATCH] (cargo-release) version 0.1.161

---
 CHANGELOG.md | 21 +++++++++++++++++++++
 Cargo.lock   |  2 +-
 Cargo.toml   |  2 +-
 install.ps1  |  2 +-
 install.sh   |  2 +-
 5 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index cef15a54c..cfbf867ac 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 b111bbfb9..bcb12e4b4 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 d1ff2f993..b371f7520 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 <autozimu@gmail.com>"]
 description = "Language Server Protocol (LSP) support for vim and neovim"
 publish = false
diff --git a/install.ps1 b/install.ps1
index 1728b2b02..2d6242424 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 7eada7eb3..558a6bfe3 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)