Skip to content

Commit 7c3ddbe

Browse files
committed
(cargo-release) version 0.1.159
1 parent 1482fac commit 7c3ddbe

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,21 @@ 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-
## [Unreleased]
7+
## [0.1.159]
88

99
### Added
10+
- Add support for disabling/enabling server-specific extensions (#1072)
11+
- Add support for custom codelens highlight group (#1100)
12+
- Add support for clangd's textDocument/switchSourceHeader (#1109)
13+
- Add configuration for hover window margin size (#1111)
1014
- Add support to skip setting buffer omnifunc (#1079).
1115
- Add support of setting languageclient binary path (#1020).
1216
- Support file watching scenario of writing via rename (#1054).
1317

18+
### Fixed
19+
- Bump lsp-types to 0.83 to fix issue with workspaceSymbolProvider definition (#1114)
20+
- Fix rust-analyzer test codelens action (#1104)
21+
1422
## [0.1.158]
1523

1624
### Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

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

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env pwsh
22

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

install.sh

Lines changed: 1 addition & 1 deletion
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.158
9+
version=0.1.159
1010
name=languageclient
1111

1212
arch=$(uname -sm)

0 commit comments

Comments
 (0)