Skip to content

Commit 90fdc13

Browse files
Loosen dependency bounds (#1787) (#1788)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Pepe Iborra <[email protected]> (cherry picked from commit 9308ff4) # Conflicts: # plugins/hls-refine-imports-plugin/hls-refine-imports-plugin.cabal Co-authored-by: Potato Hatsue <[email protected]>
1 parent f1c0969 commit 90fdc13

File tree

13 files changed

+77
-30
lines changed

13 files changed

+77
-30
lines changed

haskell-language-server.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ library
6363
, cryptohash-sha1
6464
, data-default
6565
, ghc
66-
, ghcide ^>= 1.2.0.2
66+
, ghcide ^>=1.2
6767
, gitrev
6868
, lsp
6969
, hie-bios

hls-test-utils/hls-test-utils.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ library
4343
, directory
4444
, extra
4545
, filepath
46-
, ghcide ^>=1.2.0.2
47-
, hls-plugin-api ^>=1.1.0.0
46+
, ghcide ^>=1.2
47+
, hls-plugin-api ^>=1.1
4848
, hspec
4949
, hspec-core
5050
, lens

plugins/hls-brittany-plugin/hls-brittany-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ library
2525
, filepath
2626
, ghc
2727
, ghc-boot-th
28-
, ghcide ^>=1.2.0.2
29-
, hls-plugin-api ^>=1.1.0.0
28+
, ghcide ^>=1.2
29+
, hls-plugin-api ^>=1.1
3030
, lens
3131
, lsp-types
3232
, text
@@ -44,5 +44,5 @@ test-suite tests
4444
, base
4545
, bytestring
4646
, hls-brittany-plugin
47-
, hls-test-utils ^>=1.0.0.0
47+
, hls-test-utils ^>=1.0
4848
, text

plugins/hls-class-plugin/hls-class-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ library
2929
, containers
3030
, ghc
3131
, ghc-exactprint
32-
, ghcide ^>=1.2.0.2
33-
, hls-plugin-api ^>=1.1.0.0
32+
, ghcide ^>=1.2
33+
, hls-plugin-api ^>=1.1
3434
, lens
3535
, lsp
3636
, shake
@@ -56,7 +56,7 @@ test-suite tests
5656
, bytestring
5757
, filepath
5858
, hls-class-plugin
59-
, hls-test-utils ^>= 1.0.0.0
59+
, hls-test-utils ^>= 1.0
6060
, lens
6161
, lsp-test
6262
, lsp-types

plugins/hls-eval-plugin/hls-eval-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ library
6161
, ghc
6262
, ghc-boot-th
6363
, ghc-paths
64-
, ghcide ^>=1.2.0.2
64+
, ghcide ^>=1.2
6565
, hashable
66-
, hls-plugin-api ^>=1.1.0.0
66+
, hls-plugin-api ^>=1.1
6767
, lens
6868
, lsp
6969
, lsp-types
@@ -105,7 +105,7 @@ test-suite tests
105105
, extra
106106
, filepath
107107
, hls-eval-plugin
108-
, hls-test-utils ^>=1.0.0.0
108+
, hls-test-utils ^>=1.0
109109
, lens
110110
, lsp-test
111111
, lsp-types

plugins/hls-explicit-imports-plugin/hls-explicit-imports-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ library
2121
, containers
2222
, deepseq
2323
, ghc
24-
, ghcide ^>=1.2.0.2
25-
, hls-plugin-api ^>=1.1.0.0
24+
, ghcide ^>=1.2
25+
, hls-plugin-api ^>=1.1
2626
, lsp
2727
, lsp-types
2828
, shake

plugins/hls-haddock-comments-plugin/hls-haddock-comments-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ library
2929
, containers
3030
, ghc
3131
, ghc-exactprint
32-
, ghcide ^>=1.2.0.2
33-
, hls-plugin-api ^>=1.1.0.0
32+
, ghcide ^>=1.2
33+
, hls-plugin-api ^>=1.1
3434
, lsp-types
3535
, text
3636
, unordered-containers
@@ -51,5 +51,5 @@ test-suite tests
5151
, bytestring
5252
, filepath
5353
, hls-haddock-comments-plugin
54-
, hls-test-utils ^>= 1.0.0.0
54+
, hls-test-utils ^>= 1.0
5555
, text

plugins/hls-hlint-plugin/hls-hlint-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ library
4141
, extra
4242
, filepath
4343
, ghc-exactprint >=0.6.3.4
44-
, ghcide ^>=1.2.0.2
44+
, ghcide ^>=1.2
4545
, hashable
4646
, hlint >=3.2
47-
, hls-plugin-api ^>=1.1.0.0
47+
, hls-plugin-api ^>=1.1
4848
, hslogger
4949
, lens
5050
, lsp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
cabal-version: 2.2
2+
name: hls-refine-imports-plugin
3+
version: 1.0.0.0
4+
synopsis: Refine imports plugin for Haskell Language Server
5+
license: Apache-2.0
6+
license-file: LICENSE
7+
author: rayshih
8+
maintainer: [email protected]
9+
category: Development
10+
build-type: Simple
11+
extra-source-files:
12+
LICENSE
13+
14+
library
15+
exposed-modules: Ide.Plugin.RefineImports
16+
hs-source-dirs: src
17+
build-depends:
18+
, aeson
19+
, base >=4.12 && <5
20+
, containers
21+
, deepseq
22+
, ghc
23+
, ghcide ^>=1.2
24+
, hls-plugin-api ^>=1.1
25+
, lsp
26+
, lsp-types
27+
, hls-graph
28+
, text
29+
, unordered-containers
30+
, hls-explicit-imports-plugin ^>= 1.0.0.1
31+
32+
default-language: Haskell2010
33+
default-extensions: DataKinds, TypeOperators
34+
35+
test-suite tests
36+
type: exitcode-stdio-1.0
37+
default-language: Haskell2010
38+
hs-source-dirs: test
39+
main-is: Main.hs
40+
ghc-options: -threaded -rtsopts -with-rtsopts=-N
41+
build-depends:
42+
, base
43+
, bytestring
44+
, filepath
45+
, hls-refine-imports-plugin
46+
, hls-test-utils
47+
, text

plugins/hls-retrie-plugin/hls-retrie-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ library
2323
, directory
2424
, extra
2525
, ghc
26-
, ghcide ^>=1.2.0.2
26+
, ghcide ^>=1.2
2727
, hashable
28-
, hls-plugin-api ^>=1.1.0.0
28+
, hls-plugin-api ^>=1.1
2929
, lsp
3030
, lsp-types
3131
, retrie >=0.1.1.0

plugins/hls-splice-plugin/hls-splice-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ library
4040
, foldl
4141
, ghc
4242
, ghc-exactprint
43-
, ghcide ^>=1.2.0.2
44-
, hls-plugin-api ^>=1.1.0.0
43+
, ghcide ^>=1.2
44+
, hls-plugin-api ^>=1.1
4545
, lens
4646
, lsp
4747
, retrie
@@ -69,5 +69,5 @@ test-suite tests
6969
, extra
7070
, filepath
7171
, hls-splice-plugin
72-
, hls-test-utils ^>= 1.0.0.0
72+
, hls-test-utils ^>= 1.0
7373
, text

plugins/hls-stylish-haskell-plugin/hls-stylish-haskell-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ library
2222
, filepath
2323
, ghc
2424
, ghc-boot-th
25-
, ghcide ^>=1.2.0.2
26-
, hls-plugin-api ^>=1.1.0.0
25+
, ghcide ^>=1.2
26+
, hls-plugin-api ^>=1.1
2727
, lsp-types
2828
, mtl
2929
, stylish-haskell ^>=0.12
@@ -41,5 +41,5 @@ test-suite tests
4141
, base
4242
, bytestring
4343
, hls-stylish-haskell-plugin
44-
, hls-test-utils ^>= 1.0.0.0
44+
, hls-test-utils ^>= 1.0
4545
, text

plugins/hls-tactics-plugin/hls-tactics-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ library
7272
, ghc-boot-th
7373
, ghc-exactprint
7474
, ghc-source-gen
75-
, ghcide ^>=1.2.0.2
76-
, hls-plugin-api ^>=1.1.0.0
75+
, ghcide ^>=1.2
76+
, hls-plugin-api ^>=1.1
7777
, lens
7878
, lsp
7979
, mtl
@@ -141,7 +141,7 @@ test-suite tests
141141
, ghcide
142142
, hls-plugin-api
143143
, hls-tactics-plugin
144-
, hls-test-utils ^>= 1.0.0.0
144+
, hls-test-utils ^>= 1.0
145145
, hspec
146146
, hspec-expectations
147147
, lens

0 commit comments

Comments
 (0)