hls-class-plugin 2.5.0.0 → 2.6.0.0
raw patch · 2 files changed
+5/−5 lines, 2 filesdep ~ghcidedep ~hls-plugin-apidep ~hls-test-utilsPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: ghcide, hls-plugin-api, hls-test-utils
API changes (from Hackage documentation)
Files
- hls-class-plugin.cabal +4/−4
- src/Ide/Plugin/Class.hs +1/−1
hls-class-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: hls-class-plugin-version: 2.5.0.0+version: 2.6.0.0 synopsis: Class/instance management plugin for Haskell Language Server @@ -44,10 +44,10 @@ , deepseq , extra , ghc- , ghcide == 2.5.0.0+ , ghcide == 2.6.0.0 , ghc-boot-th , hls-graph- , hls-plugin-api == 2.5.0.0+ , hls-plugin-api == 2.6.0.0 , lens , lsp , mtl@@ -84,7 +84,7 @@ , ghcide , hls-class-plugin , hls-plugin-api- , hls-test-utils == 2.5.0.0+ , hls-test-utils == 2.6.0.0 , lens , lsp-types , row-types
src/Ide/Plugin/Class.hs view
@@ -8,7 +8,7 @@ import Ide.Types import Language.LSP.Protocol.Message descriptor :: Recorder (WithPriority Log) -> PluginId -> PluginDescriptor IdeState-descriptor recorder plId = (defaultPluginDescriptor plId)+descriptor recorder plId = (defaultPluginDescriptor plId "Provides code actions and lenses for working with typeclasses") { pluginCommands = commands plId , pluginRules = getInstanceBindTypeSigsRule recorder >> getInstanceBindLensRule recorder , pluginHandlers = mkPluginHandler SMethod_TextDocumentCodeAction (codeAction recorder)