Skip to content

Commit 9eb60f9

Browse files
committed
Prepare for 0.23.0.0
This should contain the last changes before the big 1.0.0.0 merge
1 parent ebd1d79 commit 9eb60f9

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

ChangeLog.md

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

3+
## 0.23.0.0
4+
5+
* Add runWith for transporots other than stdio (@paulyoung)
6+
* Fix race condition in event captures (@bgamari)
7+
* Tweak the sectionSeparator (@alanz)
8+
* Add hashWithSaltInstances (@ndmitchell)
9+
* Fix CompletionItem.tags not being optional (@bubba)
10+
* Avoid unnecessary normalisation in Binary instance for
11+
NormalizedFilePath (@cocreature)
12+
* Fix ordering of TH splices (@fendor)
13+
314
## 0.22.0.0
415

516
* ResponseMessage results are now an Either type (@greenhat)

haskell-lsp-types/ChangeLog.md

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

3+
## 0.23.0.0
4+
5+
* Add runWith for transporots other than stdio (@paulyoung)
6+
* Fix race condition in event captures (@bgamari)
7+
* Tweak the sectionSeparator (@alanz)
8+
* Add hashWithSaltInstances (@ndmitchell)
9+
* Fix CompletionItem.tags not being optional (@bubba)
10+
* Avoid unnecessary normalisation in Binary instance for
11+
NormalizedFilePath (@cocreature)
12+
* Fix ordering of TH splices (@fendor)
13+
14+
## 0.22.0.0
15+
316
* ResponseMessage results are now an Either type (@greenhat)
417
* Support for GHC 8.10.1
518

haskell-lsp-types/haskell-lsp-types.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: haskell-lsp-types
2-
version: 0.22.0.0
2+
version: 0.23.0.0
33
synopsis: Haskell library for the Microsoft Language Server Protocol, data types
44

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

haskell-lsp.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: haskell-lsp
2-
version: 0.22.0.0
2+
version: 0.23.0.0
33
synopsis: Haskell library for the Microsoft Language Server Protocol
44

55
description: An implementation of the types, and basic message server to
@@ -46,7 +46,7 @@ library
4646
, filepath
4747
, hslogger
4848
, hashable
49-
, haskell-lsp-types == 0.22.*
49+
, haskell-lsp-types == 0.23.*
5050
, lens >= 4.15.2
5151
, mtl
5252
, network-uri

0 commit comments

Comments
 (0)