Skip to content

Commit 596376a

Browse files
authored
Prepare release 1.6 (#456)
1 parent 9014b04 commit 596376a

File tree

6 files changed

+25
-6
lines changed

6 files changed

+25
-6
lines changed

lsp-test/ChangeLog.md

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

3+
## 0.14.1.0
4+
5+
* Compatibility with new `lsp-types` major version.
6+
* Export `runSessionWithConfigCustomProcess` to allow modifying the CreateProcess used to start a server
7+
* Add `MonadThrow` instance for `Session`
8+
39
## 0.14.0.3
410

511
* Compatibility with new `lsp-types` major version.

lsp-test/lsp-test.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ library
3636
, parser-combinators:Control.Applicative.Combinators
3737
default-language: Haskell2010
3838
build-depends: base >= 4.10 && < 5
39-
, lsp-types == 1.5.*
40-
, lsp == 1.5.*
39+
, lsp-types == 1.5.* || == 1.6.*
40+
, lsp == 1.5.* || == 1.6.*
4141
, aeson
4242
, time
4343
, aeson-pretty
@@ -84,7 +84,7 @@ test-suite tests
8484
build-depends: base >= 4.10 && < 5
8585
, hspec
8686
, lens
87-
, lsp == 1.5.*
87+
, lsp == 1.6.*
8888
, lsp-test
8989
, data-default
9090
, aeson

lsp-types/ChangeLog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Revision history for lsp-types
2+
3+
## 1.6.0.0
4+
5+
* Add `isSubRangeOf` and `positionInRange` helper functions
6+
* Add `ServerCancelled`, `RequestFailed` and `ErrorCodeCustom` server error types
7+
* Fix "workspace/semanticTokens/refresh" to be a server method instead of a client method
8+
* Use a packed representation for `NormalizedFilePath`
9+
* Add converions from `OsPath` to `NormalizedFilePath` in `Language.LSP.Types.Uri.OsPath` when using new enough `filepath`
210

311
## 1.5.0.0
412

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: 2.2
22
name: lsp-types
3-
version: 1.5.1.0
3+
version: 1.6.0.0
44
synopsis: Haskell library for the Microsoft Language Server Protocol, data types
55

66
description: An implementation of the types to allow language implementors to

lsp/ChangeLog.md

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

3+
## 1.6.0.0
4+
5+
* Pinned to lsp-types 1.6
6+
* Tests moved to `lsp-types`
7+
38
## 1.5.0.0
49

510
* VFS module moved to `lsp` from `lsp-types`.

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: 1.5.1.0
3+
version: 1.6.0.0
44
synopsis: Haskell library for the Microsoft Language Server Protocol
55

66
description: An implementation of the types, and basic message server to
@@ -44,7 +44,7 @@ library
4444
, exceptions
4545
, filepath
4646
, hashable
47-
, lsp-types == 1.5.*
47+
, lsp-types == 1.6.*
4848
, lens >= 4.15.2
4949
, mtl < 2.4
5050
, prettyprinter

0 commit comments

Comments
 (0)