Skip to content

Commit b085e7a

Browse files
authored
Prepare 1.1.0 release (#1702)
* Update CHANGELOG.md * Correct bounds of hls-plugin-api * Update CHANGELOG * Bump up version of HLS and plugins * Update CHANGELOG
1 parent dfc3e2b commit b085e7a

File tree

11 files changed

+303
-24
lines changed

11 files changed

+303
-24
lines changed

ChangeLog.md

+280-1
Large diffs are not rendered by default.

haskell-language-server.cabal

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.4
22
category: Development
33
name: haskell-language-server
4-
version: 1.0.0.0
4+
version: 1.1.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>
@@ -187,37 +187,37 @@ common example-plugins
187187

188188
common class
189189
if flag(class) || flag(all-plugins)
190-
build-depends: hls-class-plugin ^>= 1.0.0.0
190+
build-depends: hls-class-plugin ^>= 1.0.0.1
191191
cpp-options: -Dclass
192192

193193
common haddockComments
194194
if flag(haddockComments) || flag(all-plugins)
195-
build-depends: hls-haddock-comments-plugin ^>= 1.0.0.0
195+
build-depends: hls-haddock-comments-plugin ^>= 1.0.0.1
196196
cpp-options: -DhaddockComments
197197

198198
common eval
199199
if flag(eval) || flag(all-plugins)
200-
build-depends: hls-eval-plugin ^>= 1.0.0.0
200+
build-depends: hls-eval-plugin ^>= 1.1.0.0
201201
cpp-options: -Deval
202202

203203
common importLens
204204
if flag(importLens) || flag(all-plugins)
205-
build-depends: hls-explicit-imports-plugin ^>= 1.0.0.0
205+
build-depends: hls-explicit-imports-plugin ^>= 1.0.0.1
206206
cpp-options: -DimportLens
207207

208208
common retrie
209209
if flag(retrie) || flag(all-plugins)
210-
build-depends: hls-retrie-plugin ^>= 1.0.0.0
210+
build-depends: hls-retrie-plugin ^>= 1.0.0.1
211211
cpp-options: -Dretrie
212212

213213
common tactic
214214
if flag(tactic) || flag(all-plugins)
215-
build-depends: hls-tactics-plugin ^>= 1.0.0.0
215+
build-depends: hls-tactics-plugin ^>= 1.1.0.0
216216
cpp-options: -Dtactic
217217

218218
common hlint
219219
if flag(hlint) || flag(all-plugins)
220-
build-depends: hls-hlint-plugin ^>= 1.0.0.0
220+
build-depends: hls-hlint-plugin ^>= 1.0.0.2
221221
cpp-options: -Dhlint
222222

223223
common moduleName
@@ -235,7 +235,7 @@ common pragmas
235235

236236
common splice
237237
if flag(splice) || flag(all-plugins)
238-
build-depends: hls-splice-plugin ^>= 1.0.0.0
238+
build-depends: hls-splice-plugin ^>= 1.0.0.1
239239
cpp-options: -Dsplice
240240

241241
-- formatters
@@ -268,7 +268,7 @@ common stylishHaskell
268268

269269
common brittany
270270
if (flag(brittany) || flag(all-formatters))
271-
build-depends: hls-brittany-plugin ^>= 1.0.0.0
271+
build-depends: hls-brittany-plugin ^>= 1.0.0.1
272272
cpp-options: -Dbrittany
273273

274274
executable haskell-language-server

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

+3-3
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.0.0
3+
version: 1.0.0.1
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>
@@ -26,7 +26,7 @@ library
2626
, ghc
2727
, ghc-boot-th
2828
, ghcide ^>=1.2.0.0
29-
, hls-plugin-api >=1.0 && <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.0.0
4848
, text

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

+1-1
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.0.0.0
3+
version: 1.0.0.1
44
synopsis:
55
Class/instance management plugin for Haskell Language Server
66

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-eval-plugin
3-
version: 1.0.0.0
3+
version: 1.1.0.0
44
synopsis: Eval plugin for Haskell Language Server
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -63,7 +63,7 @@ library
6363
, ghc-paths
6464
, ghcide ^>=1.2.0.0
6565
, hashable
66-
, hls-plugin-api >=1.0 && <1.2
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.0.0
109109
, lens
110110
, lsp-test
111111
, lsp-types

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-explicit-imports-plugin
3-
version: 1.0.0.0
3+
version: 1.0.0.1
44
synopsis: Explicit imports plugin for Haskell Language Server
55
license: Apache-2.0
66
license-file: LICENSE

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-haddock-comments-plugin
3-
version: 1.0.0.0
3+
version: 1.0.0.1
44
synopsis: Haddock comments plugin for Haskell Language Server
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-hlint-plugin
3-
version: 1.0.0.1
3+
version: 1.0.0.2
44
synopsis: Hlint integration plugin with Haskell Language Server
55
description:
66
Please see Haskell Language Server Readme (https://github.com/haskell/haskell-language-server#readme)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-retrie-plugin
3-
version: 1.0.0.1
3+
version: 1.0.0.2
44
synopsis: Retrie integration plugin for Haskell Language Server
55
license: Apache-2.0
66
license-file: LICENSE

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-splice-plugin
3-
version: 1.0.0.0
3+
version: 1.0.0.1
44
synopsis:
55
HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes
66

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.4
22
category: Development
33
name: hls-tactics-plugin
4-
version: 1.0.0.0
4+
version: 1.1.0.0
55
synopsis: Wingman plugin for Haskell Language Server
66
description: Please see README.md
77
author: Sandy Maguire, Reed Mullanix

0 commit comments

Comments
 (0)