Skip to content
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.16.0.0

- The client configuration is now _mandatory_ and is an `Object` rather than a `Value`.
- `lsp-test` now responds to `workspace/configuration` requests.
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.15.0.1
version: 0.16.0.0
synopsis: Functional test framework for LSP servers.
description:
A test framework for writing tests against
Expand Down Expand Up @@ -60,7 +60,7 @@ library
, Glob >=0.9 && <0.11
, lens
, lens-aeson
, lsp ^>=2.1
, lsp ^>=2.2
, lsp-types ^>=2.0
, mtl <2.4
, parser-combinators >=1.2
Expand Down Expand Up @@ -103,7 +103,7 @@ test-suite tests
, filepath
, hspec
, lens
, lsp ^>=2.1
, lsp ^>=2.2
, lsp-test
, mtl <2.4
, parser-combinators
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.0.2.0

- Add `Language.LSP.Protocol.Utils.Misc.prettyJSON :: Value -> Doc ann` for prettyprinting JSON,
and `ViaJSON` as a deriving-via newtype wrapper for it.
Expand Down
3 changes: 2 additions & 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.0.1.1
version: 2.0.2.0
synopsis:
Haskell library for the Microsoft Language Server Protocol, data types

Expand Down Expand Up @@ -79,6 +79,7 @@ library
, exceptions
, hashable >=1.3.4.0
, indexed-traversable
, indexed-traversable-instances
, lens >=4.15.2
, lens-aeson
, mod
Expand Down
1 change: 1 addition & 0 deletions lsp-types/src/Language/LSP/Protocol/Utils/Misc.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import Data.Aeson
import Data.Aeson.Text as Aeson
import qualified Data.Foldable as F
import qualified Data.Foldable.WithIndex as F
import qualified Data.Functor.WithIndex.Instances ()
import Data.List hiding (group)
import Data.Maybe (mapMaybe)
import Language.Haskell.TH
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.2.0.0

- Many changes relating to client configuration
- `lsp` now sends `workspace/configuration` requests in response to `intialized` and
Expand Down
2 changes: 1 addition & 1 deletion 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.1.0.0
version: 2.2.0.0
synopsis: Haskell library for the Microsoft Language Server Protocol
description:
An implementation of the types, and basic message server to
Expand Down