lsp 1.1.0.0 → 1.1.1.0
raw patch · 3 files changed
+5/−6 lines, 3 filesnew-uploaderPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- lsp.cabal +1/−1
- src/Language/LSP/Server/Core.hs +0/−5
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for lsp +## 1.1.1.0++* Don't send begin progress notification twice (@wz1000)+ ## 1.1.0.0 * Fix prepareRename reponse and prepareProvider (@kirelagin)
lsp.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: lsp-version: 1.1.0.0+version: 1.1.1.0 synopsis: Haskell library for the Microsoft Language Server Protocol description: An implementation of the types, and basic message server to
src/Language/LSP/Server/Core.hs view
@@ -597,11 +597,6 @@ Left _err -> pure () Right () -> pure () - -- Send initial notification- sendNotification SProgress $- fmap Begin $ ProgressParams progId $- WorkDoneProgressBeginParams title (Just cancellable') Nothing initialPercentage- -- Send the begin and done notifications via 'bracket_' so that they are always fired res <- withRunInIO $ \runInBase -> E.bracket_