Skip to content

Commit 79524d8

Browse files
authored
Merge pull request #514 from haskell/mpj/lsp-release-again
Prepare release
2 parents 70fceec + 100329e commit 79524d8

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

lsp-test/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-test
22

3-
## Unreleased
3+
## 0.16.0.0
44

55
- The client configuration is now _mandatory_ and is an `Object` rather than a `Value`.
66
- `lsp-test` now responds to `workspace/configuration` requests.

lsp-test/lsp-test.cabal

Lines changed: 3 additions & 3 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.15.0.1
3+
version: 0.16.0.0
44
synopsis: Functional test framework for LSP servers.
55
description:
66
A test framework for writing tests against
@@ -60,7 +60,7 @@ library
6060
, Glob >=0.9 && <0.11
6161
, lens
6262
, lens-aeson
63-
, lsp ^>=2.1
63+
, lsp ^>=2.2
6464
, lsp-types ^>=2.0
6565
, mtl <2.4
6666
, parser-combinators >=1.2
@@ -103,7 +103,7 @@ test-suite tests
103103
, filepath
104104
, hspec
105105
, lens
106-
, lsp ^>=2.1
106+
, lsp ^>=2.2
107107
, lsp-test
108108
, mtl <2.4
109109
, parser-combinators

lsp-types/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-types
22

3-
## Unreleased
3+
## 2.0.2.0
44

55
- Add `Language.LSP.Protocol.Utils.Misc.prettyJSON :: Value -> Doc ann` for prettyprinting JSON,
66
and `ViaJSON` as a deriving-via newtype wrapper for it.

lsp-types/lsp-types.cabal

Lines changed: 2 additions & 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.1.1
3+
version: 2.0.2.0
44
synopsis:
55
Haskell library for the Microsoft Language Server Protocol, data types
66

@@ -79,6 +79,7 @@ library
7979
, exceptions
8080
, hashable >=1.3.4.0
8181
, indexed-traversable
82+
, indexed-traversable-instances
8283
, lens >=4.15.2
8384
, lens-aeson
8485
, mod

lsp-types/src/Language/LSP/Protocol/Utils/Misc.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import Data.Aeson
1616
import Data.Aeson.Text as Aeson
1717
import qualified Data.Foldable as F
1818
import qualified Data.Foldable.WithIndex as F
19+
import qualified Data.Functor.WithIndex.Instances ()
1920
import Data.List hiding (group)
2021
import Data.Maybe (mapMaybe)
2122
import Language.Haskell.TH

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.2.0.0
44

55
- Many changes relating to client configuration
66
- `lsp` now sends `workspace/configuration` requests in response to `intialized` and

lsp/lsp.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: lsp
3-
version: 2.1.0.0
3+
version: 2.2.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

0 commit comments

Comments
 (0)