Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ghcide
Submodule ghcide updated 44 files
+15 −14 .azure/linux-bench.yml
+13 −16 .azure/linux-stack.yml
+0 −2 .azure/windows-stack.yml
+1 −1 .hlint.yaml
+23 −1 CHANGELOG.md
+1 −1 bench/hist.yaml
+59 −26 bench/lib/Experiments.hs
+3 −0 cabal.project
+1 −1 docs/Setup.md
+7 −2 ghcide.cabal
+49 −55 session-loader/Development/IDE/Session.hs
+2 −0 shell.nix
+6 −4 src-ghc86/Development/IDE/GHC/HieAst.hs
+66 −28 src/Development/IDE/Core/Compile.hs
+124 −76 src/Development/IDE/Core/FileExists.hs
+24 −4 src/Development/IDE/Core/IdeConfiguration.hs
+6 −7 src/Development/IDE/Core/PositionMapping.hs
+10 −9 src/Development/IDE/Core/Preprocessor.hs
+26 −8 src/Development/IDE/Core/RuleTypes.hs
+33 −19 src/Development/IDE/Core/Rules.hs
+1 −1 src/Development/IDE/Core/Service.hs
+37 −20 src/Development/IDE/Core/Shake.hs
+107 −234 src/Development/IDE/GHC/Compat.hs
+4 −0 src/Development/IDE/GHC/Orphans.hs
+0 −4 src/Development/IDE/Import/FindImports.hs
+5 −3 src/Development/IDE/LSP/LanguageServer.hs
+54 −1 src/Development/IDE/LSP/Notifications.hs
+12 −16 src/Development/IDE/LSP/Outline.hs
+12 −14 src/Development/IDE/Plugin/CodeAction.hs
+3 −5 src/Development/IDE/Plugin/Completions.hs
+25 −33 src/Development/IDE/Plugin/Completions/Logic.hs
+8 −0 src/Development/IDE/Plugin/Test.hs
+19 −11 src/Development/IDE/Spans/AtPoint.hs
+11 −9 src/Development/IDE/Spans/Common.hs
+36 −21 src/Development/IDE/Spans/Documentation.hs
+6 −6 src/Development/IDE/Spans/LocalBindings.hs
+0 −45 stack84.yaml
+6 −0 test/data/THNewName/A.hs
+5 −0 test/data/THNewName/B.hs
+4 −0 test/data/THNewName/C.hs
+1 −0 test/data/THNewName/hie.yaml
+1 −1 test/data/hover/GotoHover.hs
+344 −113 test/exe/Main.hs
+17 −3 test/src/Development/IDE/Test.hs
13 changes: 10 additions & 3 deletions hls-plugin-api/hls-plugin-api.cabal
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
cabal-version: 2.2
name: hls-plugin-api
version: 0.4.0.0
version: 0.4.1.0
synopsis: Haskell Language Server API for plugin communication
description: Please see README.md
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
bug-reports: https://github.com/haskell/haskell-language-server/issues
license: Apache-2.0
license-file: LICENSE
author: Many,TBD when we release
Expand All @@ -16,6 +19,10 @@ flag pedantic
default: False
manual: True

source-repository head
type: git
location: https://github.com/haskell/haskell-language-server

library
exposed-modules:
Ide.Logger
Expand All @@ -35,7 +42,7 @@ library
, Diff
, ghc
, ghc-boot-th
, ghcide >=0.1
, ghcide >=0.4
, haskell-lsp ^>=0.22
, hslogger
, lens
Expand Down