Skip to content

Commit 7d9de12

Browse files
authored
Merge pull request #527 from haskell/mpj/9.8-release
Prepare release
2 parents 78e3fd1 + 661cf4c commit 7d9de12

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

lsp-test/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for lsp-test
22

3+
## 0.16.0.1
4+
5+
- Support newer versions of dependencies.
6+
37
## 0.16.0.0
48

59
- The client configuration is now _mandatory_ and is an `Object` rather than a `Value`.

lsp-test/lsp-test.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: lsp-test
3-
version: 0.16.0.0
3+
version: 0.16.0.1
44
synopsis: Functional test framework for LSP servers.
55
description:
66
A test framework for writing tests against
@@ -61,8 +61,8 @@ library
6161
, Glob >=0.9 && <0.11
6262
, lens
6363
, lens-aeson
64-
, lsp ^>=2.2
65-
, lsp-types ^>=2.0
64+
, lsp ^>=2.3
65+
, lsp-types ^>=2.1
6666
, mtl <2.4
6767
, parser-combinators >=1.2
6868
, process >=1.6
@@ -105,7 +105,7 @@ test-suite tests
105105
, filepath
106106
, hspec
107107
, lens
108-
, lsp ^>=2.2
108+
, lsp ^>=2.3
109109
, lsp-test
110110
, mtl <2.4
111111
, parser-combinators

lsp-types/ChangeLog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Revision history for lsp-types
22

3-
## Unreleased
3+
## 2.1.0.0
44

55
- Add `dynamicRegistrationSupported` to `Capabilities`.
66
- Fully update `fullCaps` for recent spec versions.
7+
- Support GHC 9.8, drop checked support for GHC 8.10
78

89
## 2.0.2.0
910

lsp-types/lsp-types.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: lsp-types
3-
version: 2.0.2.0
3+
version: 2.1.0.0
44
synopsis:
55
Haskell library for the Microsoft Language Server Protocol, data types
66

lsp/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Revision history for lsp
22

3-
## Unreleased
3+
## 2.3.0.0
44

55
- Fix inference of server capabilities for newer methods (except notebook methods).
66
- VFS no longer requires IO to initialize, functions that wrote to a temporary directory

lsp/lsp.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: lsp
3-
version: 2.2.0.0
3+
version: 2.3.0.0
44
synopsis: Haskell library for the Microsoft Language Server Protocol
55
description:
66
An implementation of the types, and basic message server to
@@ -65,7 +65,7 @@ library
6565
, hashable
6666
, lens-aeson
6767
, lens >=4.15.2
68-
, lsp-types ^>=2.0.1
68+
, lsp-types ^>=2.1
6969
, mtl <2.4
7070
, prettyprinter
7171
, random

0 commit comments

Comments
 (0)