Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.19.0 #376

Merged
merged 3 commits into from
Feb 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,39 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.19.0] - 2023-02-28

### Added

* Add `LspService::inner()` method (PR #344).
* Add missing `window/showDocument` client request from LSP 3.16.0 (PR #375).
* Add partial support for Language Server Protocol 3.17.0 (PR #375):
* Implement `textDocument/prepareTypeHierarchy` server request.
* Implement `typeHierarchy/supertypes` server request.
* Implement `typeHierarchy/subtypes` server request.
* Implement `textDocument/inlineValue` server request.
* Implement `textDocument/inlayHint` server request.
* Implement `inlayHint/resolve` server request.
* Implement `workspaceSymbol/resolve` server request.
* Implement `workspace/inlineValue/refresh` client request.
* Implement `workspace/inlayHint/refresh` client request.

### Changed

* Address Clippy lints (PR #369).
* Update `edition` from `2018` to `2021` (PR #370).
* Update `lsp-types` from `0.93` to `0.94` (PR #367).
* Reorder `LanguageServer` trait methods to match the LSP 3.17.0 spec document
(PR #375).
* Reorder `Client` inherent methods to better match the LSP 3.17.0 spec document
(PR #375).

### Fixed

* Fix doc links for `textDocument/colorPresentation` request (PR #371).
* Fix doc links for `textDocument/willSaveWaitUntil` request (PR #371).
* Fix doc links for `workspace/didChangeWatchedFiles` request (PR #371).
* Improve documentation for `LanguageServer` and `Client` methods (PR #375).

## [0.18.0] - 2023-01-14

Expand Down Expand Up @@ -517,7 +549,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* `textDocument/hover`
* `textDocument/documentHighlight`

[Unreleased]: https://github.com/ebkalderon/tower-lsp/compare/v0.18.0...HEAD
[Unreleased]: https://github.com/ebkalderon/tower-lsp/compare/v0.19.0...HEAD
[0.19.0]: https://github.com/ebkalderon/tower-lsp/compare/v0.18.0...v0.19.0
[0.18.0]: https://github.com/ebkalderon/tower-lsp/compare/v0.17.0...v0.18.0
[0.17.0]: https://github.com/ebkalderon/tower-lsp/compare/v0.16.0...v0.17.0
[0.16.0]: https://github.com/ebkalderon/tower-lsp/compare/v0.15.1...v0.16.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tower-lsp"
version = "0.18.0"
version = "0.19.0"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
edition = "2021"
description = "Language Server Protocol implementation based on Tower"
Expand Down Expand Up @@ -33,7 +33,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.17", optional = true }
tokio-util = { version = "0.7", optional = true, features = ["codec"] }
tower-lsp-macros = { version = "0.7", path = "./tower-lsp-macros" }
tower-lsp-macros = { version = "0.8", path = "./tower-lsp-macros" }
tower = { version = "0.4", default-features = false, features = ["util"] }
tracing = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion tower-lsp-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tower-lsp-macros"
version = "0.7.0"
version = "0.8.0"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
description = "Internal procedural macros for tower-lsp"
edition = "2021"
Expand Down