File tree Expand file tree Collapse file tree 5 files changed +14
-6
lines changed
src/Language/Haskell/LSP/Types Expand file tree Collapse file tree 5 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for haskell-lsp
2
2
3
- ## 0.17.0.0 -- unreleased
3
+ ## 0.17.0.0 -- 2019-10-18
4
4
5
- * Update progress reporting to match the LSP 3.15 specification.
5
+ * Update progress reporting to match the LSP 3.15 specification (@cocreature )
6
+ * Fix progress cancellation action being retained (@mpickering )
7
+ * Respect both codeActionProvider and codeActionHandler in server
8
+ capabilities (@fendor )
9
+ * Ensure ResponseMessage has either a result or an error (@cocreature )
6
10
7
11
## 0.16.0.0 -- 2019-09-07
8
12
Original file line number Diff line number Diff line change 1
1
# Revision history for haskell-lsp-types
2
2
3
+ ## 0.17.0.0 -- 2019-10-18
4
+
5
+ * Update progress reporting to match the LSP 3.15 specification (@cocreature )
6
+ * Ensure ResponseMessage has either a result or an error (@cocreature )
7
+
3
8
## 0.16.0.0 -- 2019-09-07
4
9
5
10
* Add support for CodeActionOptions (@thomasjm )
Original file line number Diff line number Diff line change 1
1
name : haskell-lsp-types
2
- version : 0.16 .0.0
2
+ version : 0.17 .0.0
3
3
synopsis : Haskell library for the Microsoft Language Server Protocol, data types
4
4
5
5
description : An implementation of the types to allow language implementors to
Original file line number Diff line number Diff line change 4
4
module Language.Haskell.LSP.Types.CodeAction where
5
5
6
6
import Control.Applicative
7
- import qualified Data.Aeson as A
8
7
import Data.Aeson.TH
9
8
import Data.Aeson.Types
10
9
import Data.Text ( Text )
Original file line number Diff line number Diff line change 1
1
name : haskell-lsp
2
- version : 0.16 .0.0
2
+ version : 0.17 .0.0
3
3
synopsis : Haskell library for the Microsoft Language Server Protocol
4
4
5
5
description : An implementation of the types, and basic message server to
@@ -46,7 +46,7 @@ library
46
46
, filepath
47
47
, hslogger
48
48
, hashable
49
- , haskell-lsp-types == 0.16 . *
49
+ , haskell-lsp-types == 0.17 . *
50
50
, lens >= 4.15.2
51
51
, mtl
52
52
, network-uri
You can’t perform that action at this time.
0 commit comments