File tree Expand file tree Collapse file tree 7 files changed +25
-14
lines changed Expand file tree Collapse file tree 7 files changed +25
-14
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-test
2
2
3
+ ## 0.14.0.3
4
+
5
+ * Compatibility with new ` lsp-types ` major version.
6
+
3
7
## 0.14.0.2
4
8
5
- * Compatibility with new lsp-types major version.
9
+ * Compatibility with new ` lsp-types ` major version.
6
10
7
11
## 0.14.0.1 -- 2021-07-30
8
12
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.4
2
2
name : lsp-test
3
- version : 0.14.0.2
3
+ version : 0.14.0.3
4
4
synopsis : Functional test framework for LSP servers.
5
5
description :
6
6
A test framework for writing tests against
@@ -36,7 +36,8 @@ library
36
36
, parser-combinators :Control.Applicative.Combinators
37
37
default-language : Haskell2010
38
38
build-depends : base >= 4.10 && < 5
39
- , lsp-types == 1.4. *
39
+ , lsp-types == 1.5. *
40
+ , lsp == 1.5. *
40
41
, aeson
41
42
, time
42
43
, aeson-pretty
@@ -81,7 +82,7 @@ test-suite tests
81
82
build-depends : base >= 4.10 && < 5
82
83
, hspec
83
84
, lens
84
- , lsp == 1.4 . *
85
+ , lsp == 1.5 . *
85
86
, lsp-test
86
87
, data-default
87
88
, aeson
Original file line number Diff line number Diff line change 1
1
# Revision history for lsp-types
2
2
3
+ ## 1.5.0.0
4
+
5
+ * VFS module moved from ` lsp-types ` to ` lsp ` , as it relates to the actual implementation of a LSP server.
6
+
3
7
## 1.4.0.1
4
8
5
9
* Fix result type of selection range requests.
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : lsp-types
3
- version : 1.4 .0.1
3
+ version : 1.5 .0.0
4
4
synopsis : Haskell library for the Microsoft Language Server Protocol, data types
5
5
6
6
description : An implementation of the types to allow language implementors to
@@ -21,7 +21,6 @@ library
21
21
, Language.LSP.Types.Capabilities
22
22
, Language.LSP.Types.Lens
23
23
, Language.LSP.Types.SMethodMap
24
- , Language.LSP.VFS
25
24
, Data.IxMap
26
25
other-modules : Language.LSP.Types.CallHierarchy
27
26
, Language.LSP.Types.Cancellation
@@ -74,26 +73,21 @@ library
74
73
build-depends : base >= 4.11 && < 5
75
74
, aeson >= 1.2.2.0
76
75
, binary
77
- , bytestring
78
76
, containers
79
77
, data-default
80
78
, deepseq
81
79
, Diff
82
- , directory
83
80
, dlist
84
81
, filepath
85
82
, hashable
86
- , hslogger
87
83
, lens >= 4.15.2
88
84
, mtl
89
85
, network-uri
90
86
, mod
91
87
, scientific
92
88
, some
93
89
, text
94
- , text-rope
95
90
, template-haskell
96
- , temporary
97
91
, unordered-containers
98
92
hs-source-dirs : src
99
93
default-language : Haskell2010
Original file line number Diff line number Diff line change 1
1
# Revision history for lsp
2
2
3
+ ## 1.5.0.0
4
+
5
+ * VFS module moved to ` lsp ` from ` lsp-types ` .
6
+
3
7
## 1.4.0.0
4
8
5
9
* Fix extraneous ` asdf ` in ` withProgress ` output (#372 ) (@heitor-lassarote )
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : lsp
3
- version : 1.4 .0.0
3
+ version : 1.5 .0.0
4
4
synopsis : Haskell library for the Microsoft Language Server Protocol
5
5
6
6
description : An implementation of the types, and basic message server to
@@ -24,9 +24,9 @@ library
24
24
reexported-modules : Language.LSP.Types
25
25
, Language.LSP.Types.Capabilities
26
26
, Language.LSP.Types.Lens
27
- , Language.LSP.VFS
28
27
exposed-modules : Language.LSP.Server
29
28
, Language.LSP.Diagnostics
29
+ , Language.LSP.VFS
30
30
other-modules : Language.LSP.Server.Core
31
31
, Language.LSP.Server.Control
32
32
, Language.LSP.Server.Processing
@@ -38,17 +38,21 @@ library
38
38
, bytestring
39
39
, containers
40
40
, data-default
41
+ , directory
41
42
, exceptions
43
+ , filepath
42
44
, hslogger
43
45
, hashable
44
- , lsp-types == 1.4 . *
46
+ , lsp-types == 1.5 . *
45
47
, lens >= 4.15.2
46
48
, mtl
47
49
, network-uri
48
50
, sorted-list == 0.2.1. *
49
51
, stm == 2.5. *
50
52
, scientific
53
+ , temporary
51
54
, text
55
+ , text-rope
52
56
, transformers >= 0.5.6 && < 0.6
53
57
, time
54
58
, unordered-containers
File renamed without changes.
You can’t perform that action at this time.
0 commit comments