Skip to content

Loosen dependency bounds (backport #1787) #1788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion haskell-language-server.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ library
, cryptohash-sha1
, data-default
, ghc
, ghcide ^>= 1.2.0.2
, ghcide ^>=1.2
, gitrev
, lsp
, hie-bios
Expand Down
4 changes: 2 additions & 2 deletions hls-test-utils/hls-test-utils.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ library
, directory
, extra
, filepath
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, hspec
, hspec-core
, lens
Expand Down
6 changes: 3 additions & 3 deletions plugins/hls-brittany-plugin/hls-brittany-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ library
, filepath
, ghc
, ghc-boot-th
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lens
, lsp-types
, text
Expand All @@ -44,5 +44,5 @@ test-suite tests
, base
, bytestring
, hls-brittany-plugin
, hls-test-utils ^>=1.0.0.0
, hls-test-utils ^>=1.0
, text
6 changes: 3 additions & 3 deletions plugins/hls-class-plugin/hls-class-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ library
, containers
, ghc
, ghc-exactprint
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lens
, lsp
, shake
Expand All @@ -56,7 +56,7 @@ test-suite tests
, bytestring
, filepath
, hls-class-plugin
, hls-test-utils ^>= 1.0.0.0
, hls-test-utils ^>= 1.0
, lens
, lsp-test
, lsp-types
Expand Down
6 changes: 3 additions & 3 deletions plugins/hls-eval-plugin/hls-eval-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ library
, ghc
, ghc-boot-th
, ghc-paths
, ghcide ^>=1.2.0.2
, ghcide ^>=1.2
, hashable
, hls-plugin-api ^>=1.1.0.0
, hls-plugin-api ^>=1.1
, lens
, lsp
, lsp-types
Expand Down Expand Up @@ -105,7 +105,7 @@ test-suite tests
, extra
, filepath
, hls-eval-plugin
, hls-test-utils ^>=1.0.0.0
, hls-test-utils ^>=1.0
, lens
, lsp-test
, lsp-types
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ library
, containers
, deepseq
, ghc
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lsp
, lsp-types
, shake
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ library
, containers
, ghc
, ghc-exactprint
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lsp-types
, text
, unordered-containers
Expand All @@ -51,5 +51,5 @@ test-suite tests
, bytestring
, filepath
, hls-haddock-comments-plugin
, hls-test-utils ^>= 1.0.0.0
, hls-test-utils ^>= 1.0
, text
4 changes: 2 additions & 2 deletions plugins/hls-hlint-plugin/hls-hlint-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ library
, extra
, filepath
, ghc-exactprint >=0.6.3.4
, ghcide ^>=1.2.0.2
, ghcide ^>=1.2
, hashable
, hlint >=3.2
, hls-plugin-api ^>=1.1.0.0
, hls-plugin-api ^>=1.1
, hslogger
, lens
, lsp
Expand Down
47 changes: 47 additions & 0 deletions plugins/hls-refine-imports-plugin/hls-refine-imports-plugin.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
cabal-version: 2.2
name: hls-refine-imports-plugin
version: 1.0.0.0
synopsis: Refine imports plugin for Haskell Language Server
license: Apache-2.0
license-file: LICENSE
author: rayshih
maintainer: [email protected]
category: Development
build-type: Simple
extra-source-files:
LICENSE

library
exposed-modules: Ide.Plugin.RefineImports
hs-source-dirs: src
build-depends:
, aeson
, base >=4.12 && <5
, containers
, deepseq
, ghc
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lsp
, lsp-types
, hls-graph
, text
, unordered-containers
, hls-explicit-imports-plugin ^>= 1.0.0.1

default-language: Haskell2010
default-extensions: DataKinds, TypeOperators

test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
, base
, bytestring
, filepath
, hls-refine-imports-plugin
, hls-test-utils
, text
4 changes: 2 additions & 2 deletions plugins/hls-retrie-plugin/hls-retrie-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ library
, directory
, extra
, ghc
, ghcide ^>=1.2.0.2
, ghcide ^>=1.2
, hashable
, hls-plugin-api ^>=1.1.0.0
, hls-plugin-api ^>=1.1
, lsp
, lsp-types
, retrie >=0.1.1.0
Expand Down
6 changes: 3 additions & 3 deletions plugins/hls-splice-plugin/hls-splice-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ library
, foldl
, ghc
, ghc-exactprint
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lens
, lsp
, retrie
Expand Down Expand Up @@ -69,5 +69,5 @@ test-suite tests
, extra
, filepath
, hls-splice-plugin
, hls-test-utils ^>= 1.0.0.0
, hls-test-utils ^>= 1.0
, text
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ library
, filepath
, ghc
, ghc-boot-th
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lsp-types
, mtl
, stylish-haskell ^>=0.12
Expand All @@ -41,5 +41,5 @@ test-suite tests
, base
, bytestring
, hls-stylish-haskell-plugin
, hls-test-utils ^>= 1.0.0.0
, hls-test-utils ^>= 1.0
, text
6 changes: 3 additions & 3 deletions plugins/hls-tactics-plugin/hls-tactics-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ library
, ghc-boot-th
, ghc-exactprint
, ghc-source-gen
, ghcide ^>=1.2.0.2
, hls-plugin-api ^>=1.1.0.0
, ghcide ^>=1.2
, hls-plugin-api ^>=1.1
, lens
, lsp
, mtl
Expand Down Expand Up @@ -141,7 +141,7 @@ test-suite tests
, ghcide
, hls-plugin-api
, hls-tactics-plugin
, hls-test-utils ^>= 1.0.0.0
, hls-test-utils ^>= 1.0
, hspec
, hspec-expectations
, lens
Expand Down