hls-ormolu-plugin 1.0.2.1 → 1.0.2.2
raw patch · 1 files changed
+13/−5 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, ormolu
API changes (from Hackage documentation)
Files
- hls-ormolu-plugin.cabal +13/−5
hls-ormolu-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: hls-ormolu-plugin-version: 1.0.2.1+version: 1.0.2.2 synopsis: Integration with the Ormolu code formatter description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>@@ -17,6 +17,10 @@ test/testdata/**/*.hs library+ if impl(ghc >= 9.3)+ buildable: False+ else+ buildable: True exposed-modules: Ide.Plugin.Ormolu hs-source-dirs: src build-depends:@@ -24,16 +28,20 @@ , filepath , ghc , ghc-boot-th- , ghcide ^>=1.6 || ^>=1.7- , hls-plugin-api ^>=1.3 || ^>=1.4+ , ghcide ^>=1.6 || ^>=1.7 || ^>= 1.8+ , hls-plugin-api ^>=1.3 || ^>=1.4 || ^>= 1.5 , lens , lsp- , ormolu ^>=0.1.2 || ^>= 0.2 || ^>= 0.3 || ^>= 0.4+ , ormolu ^>=0.1.2 || ^>= 0.2 || ^>= 0.3 || ^>= 0.5 , text default-language: Haskell2010 test-suite tests+ if impl(ghc >= 9.3)+ buildable: False+ else+ buildable: True type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: test@@ -43,5 +51,5 @@ , base , filepath , hls-ormolu-plugin- , hls-test-utils ^>=1.3+ , hls-test-utils ^>=1.3 || ^>=1.4 , lsp-types