Skip to content

Commit ff1d918

Browse files
committed
Prepare release 1.9.0.0
1 parent dfd8f0b commit ff1d918

File tree

38 files changed

+387
-134
lines changed

38 files changed

+387
-134
lines changed

ChangeLog.md

+253
Large diffs are not rendered by default.

ghcide-bench/ghcide-bench.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cabal-version: 3.0
22
build-type: Simple
33
category: Development
44
name: ghcide-bench
5-
version: 0.1
5+
version: 0.1.1
66
license: Apache-2.0
77
license-file: LICENSE
88
author: The Haskell IDE team

ghcide/ghcide.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cabal-version: 3.0
22
build-type: Simple
33
category: Development
44
name: ghcide
5-
version: 1.8.0.0
5+
version: 1.9.0.0
66
license: Apache-2.0
77
license-file: LICENSE
88
author: Digital Asset and Ghcide contributors
@@ -65,7 +65,7 @@ library
6565
haddock-library >= 1.8 && < 1.12,
6666
hashable,
6767
hie-compat ^>= 0.3.0.0,
68-
hls-plugin-api ^>= 1.5,
68+
hls-plugin-api ^>= 1.6,
6969
lens,
7070
list-t,
7171
hiedb == 0.4.2.*,
@@ -80,7 +80,7 @@ library
8080
regex-tdfa >= 1.3.1.0,
8181
text-rope,
8282
safe-exceptions,
83-
hls-graph ^>= 1.8,
83+
hls-graph ^>= 1.9,
8484
sorted-list,
8585
sqlite-simple,
8686
stm,

ghcide/test/ghcide-test-utils.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: 3.0
33
build-type: Simple
44
category: Development
55
name: ghcide-test-utils
6-
version: 1.8.0.0
6+
version: 1.9.0.0
77
license: Apache-2.0
88
license-file: LICENSE
99
author: Digital Asset and Ghcide contributors

haskell-language-server.cabal

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22
category: Development
33
name: haskell-language-server
4-
version: 1.8.0.0
4+
version: 1.9.0.0
55
synopsis: LSP server for GHC
66
description:
77
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -243,12 +243,12 @@ common haddockComments
243243

244244
common eval
245245
if flag(eval) && (impl(ghc < 9.4.1) || flag(ignore-plugins-ghc-bounds))
246-
build-depends: hls-eval-plugin ^>= 1.3
246+
build-depends: hls-eval-plugin ^>= 1.4
247247
cpp-options: -Dhls_eval
248248

249249
common importLens
250250
if flag(importLens)
251-
build-depends: hls-explicit-imports-plugin ^>= 1.1
251+
build-depends: hls-explicit-imports-plugin ^>= 1.2
252252
cpp-options: -Dhls_importLens
253253

254254
common refineImports
@@ -268,7 +268,7 @@ common retrie
268268

269269
common tactic
270270
if flag(tactic) && (impl(ghc < 9.2.1) || flag(ignore-plugins-ghc-bounds))
271-
build-depends: hls-tactics-plugin ^>= 1.7
271+
build-depends: hls-tactics-plugin ^>= 1.8
272272
cpp-options: -Dhls_tactic
273273

274274
common hlint
@@ -298,7 +298,7 @@ common splice
298298

299299
common alternateNumberFormat
300300
if flag(alternateNumberFormat)
301-
build-depends: hls-alternate-number-format-plugin ^>= 1.2
301+
build-depends: hls-alternate-number-format-plugin ^>= 1.3
302302
cpp-options: -Dhls_alternateNumberFormat
303303

304304
common qualifyImportedNames
@@ -308,12 +308,12 @@ common qualifyImportedNames
308308

309309
common codeRange
310310
if flag(codeRange)
311-
build-depends: hls-code-range-plugin ^>= 1.0
311+
build-depends: hls-code-range-plugin ^>= 1.1
312312
cpp-options: -Dhls_codeRange
313313

314314
common changeTypeSignature
315315
if flag(changeTypeSignature)
316-
build-depends: hls-change-type-signature-plugin ^>= 1.0
316+
build-depends: hls-change-type-signature-plugin ^>= 1.1
317317
cpp-options: -Dhls_changeTypeSignature
318318

319319
common gadt
@@ -323,7 +323,7 @@ common gadt
323323

324324
common explicitFixity
325325
if flag(explicitFixity)
326-
build-depends: hls-explicit-fixity-plugin ^>= 1.0
326+
build-depends: hls-explicit-fixity-plugin ^>= 1.1
327327
cpp-options: -DexplicitFixity
328328

329329
common explicitFields
@@ -355,12 +355,12 @@ common stylishHaskell
355355

356356
common brittany
357357
if flag(brittany) && (impl(ghc < 9.0.2) || flag(ignore-plugins-ghc-bounds))
358-
build-depends: hls-brittany-plugin ^>= 1.0
358+
build-depends: hls-brittany-plugin ^>= 1.1
359359
cpp-options: -Dhls_brittany
360360

361361
common refactor
362362
if flag(refactor)
363-
build-depends: hls-refactor-plugin ^>= 1.0
363+
build-depends: hls-refactor-plugin ^>= 1.1
364364
cpp-options: -Dhls_refactor
365365

366366
library
@@ -416,12 +416,12 @@ library
416416
, cryptohash-sha1
417417
, data-default
418418
, ghc
419-
, ghcide ^>=1.8
419+
, ghcide ^>=1.9
420420
, githash >=0.1.6.1
421421
, lsp
422422
, hie-bios
423423
, hiedb
424-
, hls-plugin-api ^>=1.5
424+
, hls-plugin-api ^>=1.6
425425
, optparse-applicative
426426
, optparse-simple
427427
, process
@@ -561,7 +561,7 @@ test-suite func-test
561561
, lens-aeson
562562
, ghcide
563563
, ghcide-test-utils
564-
, hls-test-utils ^>=1.4
564+
, hls-test-utils ^>=1.5
565565
, lsp-types
566566
, aeson
567567
, hls-plugin-api

hie-compat/hie-compat.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 1.22
22
name: hie-compat
3-
version: 0.3.0.0
3+
version: 0.3.1.0
44
synopsis: HIE files for GHC 8.8 and other HIE file backports
55
license: Apache-2.0
66
description:

hls-graph/hls-graph.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-graph
3-
version: 1.8.0.0
3+
version: 1.9.0.0
44
synopsis: Haskell Language Server internal graph API
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server/tree/master/hls-graph#readme>

hls-plugin-api/hls-plugin-api.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-plugin-api
3-
version: 1.5.0.0
3+
version: 1.6.0.0
44
synopsis: Haskell Language Server API for plugin communication
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -55,7 +55,7 @@ library
5555
, filepath
5656
, ghc
5757
, hashable
58-
, hls-graph ^>= 1.8
58+
, hls-graph ^>= 1.9
5959
, lens
6060
, lens-aeson
6161
, lsp ^>=1.6.0.0

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-test-utils
3-
version: 1.4.0.0
3+
version: 1.5.0.0
44
synopsis: Utilities used in the tests of Haskell Language Server
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -41,9 +41,9 @@ library
4141
, directory
4242
, extra
4343
, filepath
44-
, ghcide ^>=1.8
44+
, ghcide ^>=1.9
4545
, hls-graph
46-
, hls-plugin-api ^>=1.5
46+
, hls-plugin-api ^>=1.6
4747
, lens
4848
, lsp ^>=1.6.0.0
4949
, lsp-test ^>=0.14

plugins/hls-alternate-number-format-plugin/hls-alternate-number-format-plugin.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-alternate-number-format-plugin
3-
version: 1.2.0.0
3+
version: 1.3.0.0
44
synopsis: Provide Alternate Number Formats plugin for Haskell Language Server
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -32,10 +32,10 @@ library
3232
, base >=4.12 && < 5
3333
, containers
3434
, extra
35-
, ghcide ^>= 1.8
35+
, ghcide ^>= 1.9
3636
, ghc-boot-th
3737
, hls-graph
38-
, hls-plugin-api ^>= 1.5
38+
, hls-plugin-api ^>= 1.6
3939
, hie-compat
4040
, lens
4141
, lsp ^>=1.6
@@ -64,7 +64,7 @@ test-suite tests
6464
, base >=4.12 && < 5
6565
, filepath
6666
, hls-alternate-number-format-plugin
67-
, hls-test-utils ^>=1.3 || ^>= 1.4
67+
, hls-test-utils ^>=1.5
6868
, lsp
6969
, QuickCheck
7070
, regex-tdfa

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-brittany-plugin
3-
version: 1.0.2.2
3+
version: 1.1.0.0
44
synopsis: Integration with the Brittany code formatter
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -33,8 +33,8 @@ library
3333
, brittany >=0.13.1.0 && < 0.14.0.1 || > 0.14.0.1
3434
, filepath
3535
, ghc-boot-th
36-
, ghcide ^>= 1.6 || ^>= 1.7 || ^>= 1.8
37-
, hls-plugin-api ^>= 1.3 || ^>= 1.4 || ^>= 1.5
36+
, ghcide ^>= 1.6 || ^>= 1.7 || ^>= 1.8 || ^>= 1.9
37+
, hls-plugin-api ^>= 1.3 || ^>= 1.4 || ^>= 1.5 || ^>= 1.6
3838
, lens
3939
, lsp-types
4040
, text
@@ -60,4 +60,4 @@ test-suite tests
6060
, base
6161
, filepath
6262
, hls-brittany-plugin
63-
, hls-test-utils ^>=1.3 || ^>= 1.4
63+
, hls-test-utils ^>=1.5

plugins/hls-cabal-fmt-plugin/hls-cabal-fmt-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ library
3131
, base >=4.12 && <5
3232
, directory
3333
, filepath
34-
, ghcide ^>=1.7 || ^>=1.8
35-
, hls-plugin-api ^>=1.5
34+
, ghcide ^>= 1.9
35+
, hls-plugin-api ^>= 1.6
3636
, lens
3737
, lsp-types
3838
, process
@@ -53,7 +53,7 @@ test-suite tests
5353
, directory
5454
, filepath
5555
, hls-cabal-fmt-plugin
56-
, hls-test-utils ^>=1.4
56+
, hls-test-utils ^>=1.5
5757

5858
if flag(isolateTests)
5959
build-tool-depends: cabal-fmt:cabal-fmt ^>=0.1.6

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ library
4848
, deepseq
4949
, directory
5050
, extra >=1.7.4
51-
, ghcide ^>= 1.8
51+
, ghcide ^>= 1.9
5252
, hashable
53-
, hls-plugin-api ^>=1.5
54-
, hls-graph ^>=1.8
53+
, hls-plugin-api ^>=1.6
54+
, hls-graph ^>=1.9
5555
, lsp ^>=1.6.0.0
5656
, lsp-types ^>=1.6.0.0
5757
, regex-tdfa ^>=1.3.1
@@ -74,7 +74,7 @@ test-suite tests
7474
, filepath
7575
, ghcide
7676
, hls-cabal-plugin
77-
, hls-test-utils ^>=1.4
77+
, hls-test-utils ^>=1.5
7878
, lens
7979
, lsp-types
8080
, tasty-hunit

plugins/hls-call-hierarchy-plugin/hls-call-hierarchy-plugin.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ library
3333
, base >=4.12 && <5
3434
, containers
3535
, extra
36-
, ghcide ^>= 1.8
36+
, ghcide ^>= 1.9
3737
, hiedb
38-
, hls-plugin-api ^>= 1.5
38+
, hls-plugin-api ^>= 1.6
3939
, lens
4040
, lsp >=1.2.0.1
4141
, sqlite-simple
@@ -59,7 +59,7 @@ test-suite tests
5959
, extra
6060
, filepath
6161
, hls-call-hierarchy-plugin
62-
, hls-test-utils ^>=1.4
62+
, hls-test-utils ^>=1.5
6363
, ghcide-test-utils
6464
, lens
6565
, lsp

plugins/hls-change-type-signature-plugin/hls-change-type-signature-plugin.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-change-type-signature-plugin
3-
version: 1.0.1.1
3+
version: 1.1.0.0
44
synopsis: Change a declarations type signature with a Code Action
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/plugins/hls-change-type-signature-plugin/README.md>
@@ -28,8 +28,8 @@ library
2828
hs-source-dirs: src
2929
build-depends:
3030
, base >=4.12 && < 5
31-
, ghcide ^>=1.8
32-
, hls-plugin-api ^>=1.5
31+
, ghcide ^>=1.9
32+
, hls-plugin-api ^>=1.6
3333
, lsp-types
3434
, regex-tdfa
3535
, syb
@@ -61,7 +61,7 @@ test-suite tests
6161
, base >=4.12 && < 5
6262
, filepath
6363
, hls-change-type-signature-plugin
64-
, hls-test-utils ^>=1.4
64+
, hls-test-utils ^>=1.5
6565
, lsp
6666
, QuickCheck
6767
, regex-tdfa

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-class-plugin
3-
version: 1.1.0.0
3+
version: 1.1.1.0
44
synopsis:
55
Class/instance management plugin for Haskell Language Server
66

@@ -39,10 +39,10 @@ library
3939
, deepseq
4040
, extra
4141
, ghc
42-
, ghcide ^>=1.8
42+
, ghcide ^>=1.9
4343
, ghc-boot-th
4444
, hls-graph
45-
, hls-plugin-api ^>=1.5
45+
, hls-plugin-api ^>=1.6
4646
, lens
4747
, lsp
4848
, text
@@ -74,6 +74,6 @@ test-suite tests
7474
, ghcide
7575
, hls-class-plugin
7676
, hls-plugin-api
77-
, hls-test-utils ^>=1.4
77+
, hls-test-utils ^>=1.5
7878
, lens
7979
, lsp-types

0 commit comments

Comments
 (0)