Skip to content

Commit a42594c

Browse files
committed
(cargo-release) version 0.1.161
1 parent 1f0ff21 commit a42594c

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [0.1.162]
8+
9+
## [0.1.161]
10+
11+
### Fixed
12+
- Fix incorrect deserialization of completion items in NCM2 (#1151)
13+
- Fix markdown syntax on hover (#1039)
14+
- Fix diagnostics signs logic (#1126)
15+
16+
### Added
17+
- Add support for initialization options in server command (#1116)
18+
- Add function to execute code action by kind (#1160)
19+
- Add support for rust-analyzer chaining hints (#1108)
20+
- Add parameter to explainErrorAtPoint to enable running silently (#1143)
21+
- Use separate namespace for document and diagnostic highlights (#1145)
22+
- Add LanguageClient_codeLensDisplay config (#1144)
23+
- Add completion item documentation (#1043)
24+
- Do not send notifications/requests for buffers without a configured server (#1121)
25+
- Add support for document highlight on vim8 (#1123)
26+
- Add automatic server restart on crash (#1113)
27+
728
## [0.1.160]
829

930
### Fixed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "languageclient"
3-
version = "0.1.160"
3+
version = "0.1.161"
44
authors = ["Junfeng Li <[email protected]>"]
55
description = "Language Server Protocol (LSP) support for vim and neovim"
66
publish = false

install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env pwsh
22

3-
$version = '0.1.160'
3+
$version = '0.1.161'
44
$name = 'languageclient'
55
$url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/$name-$version-"
66

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -o nounset # error when referencing undefined variable
77
set -o errexit # exit when command fails
88

9-
version=0.1.160
9+
version=0.1.161
1010
name=languageclient
1111

1212
arch=$(uname -sm)

0 commit comments

Comments
 (0)