hls-fourmolu-plugin 2.3.0.0 → 2.4.0.0
raw patch · 1 files changed
+13/−6 lines, 1 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-fourmolu-plugin.cabal +13/−6
hls-fourmolu-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: hls-fourmolu-plugin-version: 2.3.0.0+version: 2.4.0.0 synopsis: Integration with the Fourmolu code formatter description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>@@ -23,7 +23,11 @@ location: git://github.com/haskell/haskell-language-server.git library- buildable: True+ -- Plugins that need exactprint have not been updated for 9.8 yet+ if impl(ghc >= 9.8)+ buildable: False+ else+ buildable: True exposed-modules: Ide.Plugin.Fourmolu hs-source-dirs: src@@ -33,8 +37,8 @@ , filepath , ghc , ghc-boot-th- , ghcide == 2.3.0.0- , hls-plugin-api == 2.3.0.0+ , ghcide == 2.4.0.0+ , hls-plugin-api == 2.4.0.0 , lens , lsp , mtl@@ -55,7 +59,10 @@ default-language: Haskell2010 test-suite tests- buildable: True+ if impl(ghc >= 9.8)+ buildable: False+ else+ buildable: True type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: test@@ -70,5 +77,5 @@ , filepath , hls-fourmolu-plugin , hls-plugin-api- , hls-test-utils == 2.3.0.0+ , hls-test-utils == 2.4.0.0 , lsp-test