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

Merged
merged 2 commits into from
Apr 30, 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 cabal.project
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
index-state: 2024-02-26T00:00:00Z
index-state: 2024-04-30T00:00:00Z

packages:
./lsp
Expand Down
4 changes: 4 additions & 0 deletions lsp-test/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for lsp-test

## 0.17.0.1

- Support for newer versions of dependencies.

## 0.17.0.0

- `ignoreRegistrationRequests` option to ignore `client/registerCapability` requests, on
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.0
version: 0.17.0.1
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.3
, lens-aeson ^>=1.2
, lsp ^>=2.4
, lsp-types ^>=2.1
, lsp ^>=2.5
, lsp-types ^>=2.2
, mtl >=2.2 && <2.4
, parser-combinators ^>=1.3
, process ^>=1.6
Expand Down
2 changes: 1 addition & 1 deletion 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.2.0.0 -- 2024-04-29

- Update the metamodel. This results in a number of breaking changes to the generated code, mostly replacing
anonymous structs with named ones.
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.1.1.0
version: 2.2.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.5.0.0

- The server will now reject messages sent after `shutdown` has been received.
- There is a `shutdownBarrier` member in the server state which can be used to
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.4.0.0
version: 2.5.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 @@ -67,7 +67,7 @@ library
, hashable ^>=1.4
, lens >=5.1 && <5.3
, lens-aeson ^>=1.2
, lsp-types ^>=2.1
, lsp-types ^>=2.2
, mtl >=2.2 && <2.4
, prettyprinter ^>=1.7
, random ^>=1.2
Expand Down
Loading