Skip to content

Commit

Permalink
(cargo-release) version 0.1.159
Browse files Browse the repository at this point in the history
  • Loading branch information
martskins committed Oct 24, 2020
1 parent 1482fac commit 7c3ddbe
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,21 @@ 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/).

## [Unreleased]
## [0.1.159]

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

### Fixed
- Bump lsp-types to 0.83 to fix issue with workspaceSymbolProvider definition (#1114)
- Fix rust-analyzer test codelens action (#1104)

## [0.1.158]

### Added
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.158"
version = "0.1.159"
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.158'
$version = '0.1.159'
$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.158
version=0.1.159
name=languageclient

arch=$(uname -sm)
Expand Down

0 comments on commit 7c3ddbe

Please sign in to comment.