packages feed

hls-retrie-plugin 2.2.0.0 → 2.3.0.0

raw patch · 9 files changed

+66/−5 lines, 9 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-retrie-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.2 name:               hls-retrie-plugin-version:            2.2.0.0+version:            2.3.0.0 synopsis:           Retrie integration plugin for Haskell Language Server description:   Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>@@ -10,7 +10,11 @@ maintainer:         pepeiborra@gmail.com category:           Development build-type:         Simple-extra-source-files: LICENSE+extra-source-files:+  LICENSE+  test/Main.hs+  test/testdata/*.hs+  test/testdata/*.yaml  source-repository head     type:     git@@ -28,9 +32,9 @@     , directory     , extra     , ghc-    , ghcide                == 2.2.0.0+    , ghcide                == 2.3.0.0     , hashable-    , hls-plugin-api        == 2.2.0.0+    , hls-plugin-api        == 2.3.0.0     , hls-refactor-plugin     , lens     , lsp@@ -65,5 +69,5 @@     , hls-plugin-api     , hls-refactor-plugin     , hls-retrie-plugin-    , hls-test-utils             == 2.2.0.0+    , hls-test-utils             == 2.3.0.0     , text
+ test/testdata/Class.hs view
@@ -0,0 +1,7 @@+module Class where++class Identity x where+    identity :: x -> x+    identity x = x++function x = identity x
+ test/testdata/Identity.hs view
@@ -0,0 +1,5 @@+module Identity where++identity x = x++function x = identity x
+ test/testdata/Imported.hs view
@@ -0,0 +1,5 @@+module Imported where++import Identity++f x = identity x
+ test/testdata/NestedLet.hs view
@@ -0,0 +1,7 @@+module NestedLet where++++function x =+    let identity x = x+    in identity x
+ test/testdata/NestedNested.hs view
@@ -0,0 +1,10 @@++module NestedNested where++++function x = meme x+  where+    meme x = identity x+    identity x = x+
+ test/testdata/NestedWhere.hs view
@@ -0,0 +1,7 @@+module NestedWhere where++++function x = identity x+  where+    identity x = x
+ test/testdata/Operator.hs view
@@ -0,0 +1,5 @@+module Operator where++x */ y = x++function x = x */ ()
+ test/testdata/hie.yaml view
@@ -0,0 +1,11 @@+cradle:+    direct:+      arguments:+        - Class.hs+        - Identity.hs+        - Imported.hs+        - Nested.hs+        - NestedLet.hs+        - NestedNested.hs+        - NestedWhere.hs+        - Operator.hs