packages feed

haskell-lsp 0.20.0.0 → 0.20.0.1

raw patch · 3 files changed

+8/−4 lines, 3 files

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for haskell-lsp +## 0.20.0.1++* Fix Haddock generation syntax error+ ## 0.20.0.0  * Don't log errors for '$/' notifications (@jinwoo)
haskell-lsp.cabal view
@@ -1,5 +1,5 @@ name:                haskell-lsp-version:             0.20.0.0+version:             0.20.0.1 synopsis:            Haskell library for the Microsoft Language Server Protocol  description:         An implementation of the types, and basic message server to
src/Language/Haskell/LSP/Core.hs view
@@ -422,7 +422,7 @@           case mh of             Just h -> h req             Nothing-              -- $/ notifications should/could be ignored by server.+              -- '$/' notifications should/could be ignored by server.               -- Don't log errors in that case.               -- See https://microsoft.github.io/language-server-protocol/specifications/specification-current/#-notifications-and-requests.               | isOptionalNotification req' -> return ()@@ -1031,12 +1031,12 @@         resSendResponse ctx $ NotPublishDiagnostics           $ J.NotificationMessage "2.0" J.TextDocumentPublishDiagnostics params --- |=====================================================================+-- ===================================================================== -- --  utility  --- |+--  --  Logger -- setupLogger :: Maybe FilePath -> [String] -> Priority -> IO ()