packages feed

hls-rename-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)

- Ide.Plugin.Rename: data Log
+ Ide.Plugin.Rename: data () => Log

Files

hls-rename-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.4 name:               hls-rename-plugin-version:            2.5.0.0+version:            2.6.0.0 synopsis:           Rename plugin for Haskell Language Server description:   Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>@@ -34,11 +34,11 @@     , extra     , ghc     , ghc-exactprint-    , ghcide                == 2.5.0.0+    , ghcide                == 2.6.0.0     , hashable     , hiedb     , hie-compat-    , hls-plugin-api        == 2.5.0.0+    , hls-plugin-api        == 2.6.0.0     , hls-refactor-plugin     , lens     , lsp@@ -69,4 +69,4 @@     , filepath     , hls-plugin-api     , hls-rename-plugin-    , hls-test-utils             == 2.5.0.0+    , hls-test-utils             == 2.6.0.0
src/Ide/Plugin/Rename.hs view
@@ -63,7 +63,7 @@ instance Hashable (Mod a) where hash n = hash (unMod n)  descriptor :: Recorder (WithPriority E.Log) -> PluginId -> PluginDescriptor IdeState-descriptor recorder pluginId = mkExactprintPluginDescriptor recorder $ (defaultPluginDescriptor pluginId)+descriptor recorder pluginId = mkExactprintPluginDescriptor recorder $ (defaultPluginDescriptor pluginId "Provides renaming of Haskell identifiers")     { pluginHandlers = mkPluginHandler SMethod_TextDocumentRename renameProvider     , pluginConfigDescriptor = defaultConfigDescriptor         { configCustomConfig = mkCustomConfig properties }