Skip to content

Commit

Permalink
(cargo-release) version 0.1.161
Browse files Browse the repository at this point in the history
  • Loading branch information
martskins committed Dec 10, 2020
1 parent 1f0ff21 commit a42594c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "languageclient"
version = "0.1.160"
version = "0.1.161"
authors = ["Junfeng Li <[email protected]>"]
description = "Language Server Protocol (LSP) support for vim and neovim"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
@@ -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-"

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a42594c

Please sign in to comment.