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 #588

Merged
merged 1 commit into from
Jun 6, 2024
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
2 changes: 1 addition & 1 deletion lsp-test/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Revision history for lsp-test

## Unreleased
## 0.17.1.0 -- 2024-06-06

- Add helpers for testing inlay hints.

Expand Down
6 changes: 3 additions & 3 deletions lsp-test/lsp-test.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: lsp-test
version: 0.17.0.2
version: 0.17.1.0
synopsis: Functional test framework for LSP servers.
description:
A test framework for writing tests against
Expand Down Expand Up @@ -65,8 +65,8 @@ library
, Glob >=0.9 && <0.11
, lens >=5.1 && <5.4
, lens-aeson ^>=1.2
, lsp ^>=2.6
, lsp-types ^>=2.2
, lsp ^>=2.7
, lsp-types ^>=2.3
, mtl >=2.2 && <2.4
, parser-combinators ^>=1.3
, process ^>=1.6
Expand Down
4 changes: 2 additions & 2 deletions lsp-types/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Revision history for lsp-types

## Unreleased
## 2.3.0.0 -- 2024-06-06

- Add support for identifying client and server capabilities associated with a method.
- `TResponseMessage` now contains a `TResponseError` instead of a `ResponseError`
Expand Down
2 changes: 1 addition & 1 deletion lsp-types/lsp-types.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: lsp-types
version: 2.2.0.0
version: 2.3.0.0
synopsis:
Haskell library for the Microsoft Language Server Protocol, data types

Expand Down
2 changes: 1 addition & 1 deletion lsp/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Revision history for lsp

## Unreleased
## 2.7.0.0 -- 2024-06-06

- Drop dependency on `uuid` and `random`
- Fix handling of `rootPath` in `intializeParams`
Expand Down
4 changes: 2 additions & 2 deletions lsp/lsp.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: lsp
version: 2.6.0.0
version: 2.7.0.0
synopsis: Haskell library for the Microsoft Language Server Protocol
description:
An implementation of the types, and basic message server to
Expand Down Expand Up @@ -68,7 +68,7 @@ library
, hashable ^>=1.4
, lens >=5.1 && <5.4
, lens-aeson ^>=1.2
, lsp-types ^>=2.2
, lsp-types ^>=2.3
, mtl >=2.2 && <2.4
, prettyprinter ^>=1.7
, sorted-list ^>=0.2.1
Expand Down
Loading