diff --git a/lsp-test/ChangeLog.md b/lsp-test/ChangeLog.md index cb80fe23..0bc07e1c 100644 --- a/lsp-test/ChangeLog.md +++ b/lsp-test/ChangeLog.md @@ -1,6 +1,6 @@ # Revision history for lsp-test -## Unreleased +## 0.17.0.0 - `ignoreRegistrationRequests` option to ignore `client/registerCapability` requests, on by default. diff --git a/lsp-test/lsp-test.cabal b/lsp-test/lsp-test.cabal index 48c3a755..2a34206e 100644 --- a/lsp-test/lsp-test.cabal +++ b/lsp-test/lsp-test.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: lsp-test -version: 0.16.0.1 +version: 0.17.0.0 synopsis: Functional test framework for LSP servers. description: A test framework for writing tests against @@ -61,7 +61,7 @@ library , Glob >=0.9 && <0.11 , lens >=5.1 && <5.3 , lens-aeson ^>=1.2 - , lsp ^>=2.3 + , lsp ^>=2.4 , lsp-types ^>=2.1 , mtl >=2.2 && <2.4 , parser-combinators ^>=1.3 diff --git a/lsp-types/ChangeLog.md b/lsp-types/ChangeLog.md index db8a68cd..fb48a2fc 100644 --- a/lsp-types/ChangeLog.md +++ b/lsp-types/ChangeLog.md @@ -1,6 +1,6 @@ # Revision history for lsp-types -## Unreleased +## 2.1.1.0 -- 2024-02-24 - Require aeson 2 - Accept `null` in place of a missing field, a common mistake in spec compliance. diff --git a/lsp-types/lsp-types.cabal b/lsp-types/lsp-types.cabal index f85e21d0..ad9eed11 100644 --- a/lsp-types/lsp-types.cabal +++ b/lsp-types/lsp-types.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: lsp-types -version: 2.1.0.0 +version: 2.1.1.0 synopsis: Haskell library for the Microsoft Language Server Protocol, data types diff --git a/lsp/ChangeLog.md b/lsp/ChangeLog.md index c75a6115..dce04c7a 100644 --- a/lsp/ChangeLog.md +++ b/lsp/ChangeLog.md @@ -1,6 +1,6 @@ # Revision history for lsp -## Unreleased +## 2.4.0.0 - Server-created progress now will not send reports until and unless the client confirms the progress token creation. diff --git a/lsp/lsp.cabal b/lsp/lsp.cabal index f8dc5f7e..52fb8354 100644 --- a/lsp/lsp.cabal +++ b/lsp/lsp.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: lsp -version: 2.3.0.0 +version: 2.4.0.0 synopsis: Haskell library for the Microsoft Language Server Protocol description: An implementation of the types, and basic message server to