Skip to content

Commit 404847a

Browse files
authored
Merge pull request #404 from michaelpj/mpj/move-vfs
Move VFS to lsp
2 parents 93b50dd + 2497a3a commit 404847a

File tree

7 files changed

+25
-14
lines changed

7 files changed

+25
-14
lines changed

lsp-test/ChangeLog.md

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

3+
## 0.14.0.3
4+
5+
* Compatibility with new `lsp-types` major version.
6+
37
## 0.14.0.2
48

5-
* Compatibility with new lsp-types major version.
9+
* Compatibility with new `lsp-types` major version.
610

711
## 0.14.0.1 -- 2021-07-30
812

lsp-test/lsp-test.cabal

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: lsp-test
3-
version: 0.14.0.2
3+
version: 0.14.0.3
44
synopsis: Functional test framework for LSP servers.
55
description:
66
A test framework for writing tests against
@@ -36,7 +36,8 @@ library
3636
, parser-combinators:Control.Applicative.Combinators
3737
default-language: Haskell2010
3838
build-depends: base >= 4.10 && < 5
39-
, lsp-types == 1.4.*
39+
, lsp-types == 1.5.*
40+
, lsp == 1.5.*
4041
, aeson
4142
, time
4243
, aeson-pretty
@@ -81,7 +82,7 @@ test-suite tests
8182
build-depends: base >= 4.10 && < 5
8283
, hspec
8384
, lens
84-
, lsp == 1.4.*
85+
, lsp == 1.5.*
8586
, lsp-test
8687
, data-default
8788
, aeson

lsp-types/ChangeLog.md

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

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+
37
## 1.4.0.1
48

59
* Fix result type of selection range requests.

lsp-types/lsp-types.cabal

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: lsp-types
3-
version: 1.4.0.1
3+
version: 1.5.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
@@ -21,7 +21,6 @@ library
2121
, Language.LSP.Types.Capabilities
2222
, Language.LSP.Types.Lens
2323
, Language.LSP.Types.SMethodMap
24-
, Language.LSP.VFS
2524
, Data.IxMap
2625
other-modules: Language.LSP.Types.CallHierarchy
2726
, Language.LSP.Types.Cancellation
@@ -74,26 +73,21 @@ library
7473
build-depends: base >= 4.11 && < 5
7574
, aeson >=1.2.2.0
7675
, binary
77-
, bytestring
7876
, containers
7977
, data-default
8078
, deepseq
8179
, Diff
82-
, directory
8380
, dlist
8481
, filepath
8582
, hashable
86-
, hslogger
8783
, lens >= 4.15.2
8884
, mtl
8985
, network-uri
9086
, mod
9187
, scientific
9288
, some
9389
, text
94-
, text-rope
9590
, template-haskell
96-
, temporary
9791
, unordered-containers
9892
hs-source-dirs: src
9993
default-language: Haskell2010

lsp/ChangeLog.md

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

3+
## 1.5.0.0
4+
5+
* VFS module moved to `lsp` from `lsp-types`.
6+
37
## 1.4.0.0
48

59
* Fix extraneous `asdf` in `withProgress` output (#372) (@heitor-lassarote)

lsp/lsp.cabal

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: lsp
3-
version: 1.4.0.0
3+
version: 1.5.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
@@ -24,9 +24,9 @@ library
2424
reexported-modules: Language.LSP.Types
2525
, Language.LSP.Types.Capabilities
2626
, Language.LSP.Types.Lens
27-
, Language.LSP.VFS
2827
exposed-modules: Language.LSP.Server
2928
, Language.LSP.Diagnostics
29+
, Language.LSP.VFS
3030
other-modules: Language.LSP.Server.Core
3131
, Language.LSP.Server.Control
3232
, Language.LSP.Server.Processing
@@ -38,17 +38,21 @@ library
3838
, bytestring
3939
, containers
4040
, data-default
41+
, directory
4142
, exceptions
43+
, filepath
4244
, hslogger
4345
, hashable
44-
, lsp-types == 1.4.*
46+
, lsp-types == 1.5.*
4547
, lens >= 4.15.2
4648
, mtl
4749
, network-uri
4850
, sorted-list == 0.2.1.*
4951
, stm == 2.5.*
5052
, scientific
53+
, temporary
5154
, text
55+
, text-rope
5256
, transformers >= 0.5.6 && < 0.6
5357
, time
5458
, unordered-containers
File renamed without changes.

0 commit comments

Comments
 (0)