File tree Expand file tree Collapse file tree 6 files changed +25
-6
lines changed Expand file tree Collapse file tree 6 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11cabal-version : 2.2
22name : lsp-types
3- version : 1.5.1 .0
3+ version : 1.6.0 .0
44synopsis : Haskell library for the Microsoft Language Server Protocol, data types
55
66description : An implementation of the types to allow language implementors to
Original file line number Diff line number Diff line change 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 ` .
Original file line number Diff line number Diff line change 11cabal-version : 2.2
22name : lsp
3- version : 1.5.1 .0
3+ version : 1.6.0 .0
44synopsis : Haskell library for the Microsoft Language Server Protocol
55
66description : 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
You can’t perform that action at this time.
0 commit comments