Skip to content

Commit

Permalink
Prepare lsp{,-types} 1.2.0.0, lsp-test 0.14.0.0 (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
wz1000 authored Mar 26, 2021
1 parent e8b311a commit 76b86d5
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 6 deletions.
6 changes: 6 additions & 0 deletions lsp-test/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Revision history for lsp-test

## 0.13.0.0 -- 2021-03-26

* Update for lsp-types-1.2 (@wz1000)
* Limit diagnostics by range in getCodeActions (@aufarg)
* Kill timeout thread to avoid building up thousands of old TimeoutMessages (@wz1000)

## 0.13.0.0 -- 2021-02-14

* Add support for lsp-types-1.1 (@wz1000)
Expand Down
6 changes: 3 additions & 3 deletions lsp-test/lsp-test.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: lsp-test
version: 0.13.0.0
version: 0.14.0.0
synopsis: Functional test framework for LSP servers.
description:
A test framework for writing tests against
Expand Down Expand Up @@ -36,7 +36,7 @@ library
, parser-combinators:Control.Applicative.Combinators
default-language: Haskell2010
build-depends: base >= 4.10 && < 5
, lsp-types == 1.1.*
, lsp-types == 1.2.*
, aeson
, time
, aeson-pretty
Expand Down Expand Up @@ -81,7 +81,7 @@ test-suite tests
build-depends: base >= 4.10 && < 5
, hspec
, lens
, lsp == 1.1.*
, lsp == 1.2.*
, lsp-test
, data-default
, aeson
Expand Down
17 changes: 17 additions & 0 deletions lsp-types/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Revision history for lsp-types

## 1.2.0.0

* Prevent crashing when optional fields are missing (@anka-213)
* Use StrictData (@wz1000)
* Add MarkupContent in SignatureHelp types (@michaelpj)
* Add activeParameter support in SignatureInformation (@michaelpj)
* Add label offset support in SignatureHelp (@michaelpj)
* Add some documentation comments to SignatureHelp types (@michaelpj)
* Add support for InsertReplaceEdit (@michaelpj)
* Add support for InsertTextMode (@michaelpj)
* Add resolveSupport (@michaelpj)
* Fix applying a TextEdit past the end of the document (#271) (@michaelpj)
* Use Empty instead of () as progress create response (#295) (@wz1000)
* Add tag support for DocumentSymbol, SymbolInformation, and document symbol provider label (#301) (@michaelpj)
* Support change annotations (#302) (@michaelpj)
* Add some more missing lenses (#307) (@michaelpj)

## 1.1.0.0

* Fix prepareRename reponse and prepareProvider (@kirelagin)
Expand Down
2 changes: 1 addition & 1 deletion lsp-types/lsp-types.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: lsp-types
version: 1.1.0.0
version: 1.2.0.0
synopsis: Haskell library for the Microsoft Language Server Protocol, data types

description: An implementation of the types to allow language implementors to
Expand Down
7 changes: 7 additions & 0 deletions lsp/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Revision history for lsp

## 1.2.0.0

* Parse config from initializeOptions and pass in the old value of config to onConfigurationChange (#285) (wz1000)
* Break up big TVar record into lots of small TVars (#286) (@wz1000)
* Add some INLINE pragmas (@wz1000)
* Make method equality work for CustomMethods (@wz1000)

## 1.1.1.0

* Don't send begin progress notification twice (@wz1000)
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: 1.1.1.0
version: 1.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 Expand Up @@ -42,7 +42,7 @@ library
, filepath
, hslogger
, hashable
, lsp-types == 1.1.*
, lsp-types == 1.2.*
, dependent-map
, lens >= 4.15.2
, mtl
Expand Down

0 comments on commit 76b86d5

Please sign in to comment.