Skip to content
New issue

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

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

Already on GitHub? # to your account

Prepare 1.1.0 release #1702

Merged
merged 7 commits into from
Apr 12, 2021
Merged
Show file tree
Hide file tree
Changes from 5 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
272 changes: 271 additions & 1 deletion ChangeLog.md

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions haskell-language-server.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.4
category: Development
name: haskell-language-server
version: 1.0.0.0
version: 1.1.0.0
synopsis: LSP server for GHC
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
Expand Down Expand Up @@ -187,37 +187,37 @@ common example-plugins

common class
if flag(class) || flag(all-plugins)
build-depends: hls-class-plugin ^>= 1.0.0.0
build-depends: hls-class-plugin ^>= 1.0.0.1
cpp-options: -Dclass

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

common eval
if flag(eval) || flag(all-plugins)
build-depends: hls-eval-plugin ^>= 1.0.0.0
build-depends: hls-eval-plugin ^>= 1.1.0.0
cpp-options: -Deval

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

common retrie
if flag(retrie) || flag(all-plugins)
build-depends: hls-retrie-plugin ^>= 1.0.0.0
build-depends: hls-retrie-plugin ^>= 1.0.0.1
cpp-options: -Dretrie

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

common hlint
if flag(hlint) || flag(all-plugins)
build-depends: hls-hlint-plugin ^>= 1.0.0.0
build-depends: hls-hlint-plugin ^>= 1.0.0.2
cpp-options: -Dhlint

common moduleName
Expand All @@ -235,7 +235,7 @@ common pragmas

common splice
if flag(splice) || flag(all-plugins)
build-depends: hls-splice-plugin ^>= 1.0.0.0
build-depends: hls-splice-plugin ^>= 1.0.0.1
cpp-options: -Dsplice

-- formatters
Expand Down Expand Up @@ -268,7 +268,7 @@ common stylishHaskell

common brittany
if (flag(brittany) || flag(all-formatters))
build-depends: hls-brittany-plugin ^>= 1.0.0.0
build-depends: hls-brittany-plugin ^>= 1.0.0.1
cpp-options: -Dbrittany

executable haskell-language-server
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
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hls-brittany-plugin
version: 1.0.0.0
version: 1.0.0.1
synopsis: Integration with the Brittany code formatter
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
Expand All @@ -26,7 +26,7 @@ library
, ghc
, ghc-boot-th
, ghcide ^>=1.2.0.0
, hls-plugin-api >=1.0 && <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.0.0
, text
2 changes: 1 addition & 1 deletion plugins/hls-class-plugin/hls-class-plugin.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hls-class-plugin
version: 1.0.0.0
version: 1.0.0.1
synopsis:
Class/instance management plugin for Haskell Language Server

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
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hls-eval-plugin
version: 1.0.0.0
version: 1.1.0.0
synopsis: Eval plugin for Haskell Language Server
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
Expand Down Expand Up @@ -63,7 +63,7 @@ library
, ghc-paths
, ghcide ^>=1.2.0.0
, hashable
, hls-plugin-api >=1.0 && <1.2
, 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.0.0
, lens
, lsp-test
, lsp-types
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-explicit-imports-plugin
version: 1.0.0.0
version: 1.0.0.1
synopsis: Explicit imports plugin for Haskell Language Server
license: Apache-2.0
license-file: LICENSE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hls-haddock-comments-plugin
version: 1.0.0.0
version: 1.0.0.1
synopsis: Haddock comments plugin for Haskell Language Server
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server>
Expand Down
2 changes: 1 addition & 1 deletion plugins/hls-hlint-plugin/hls-hlint-plugin.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-hlint-plugin
version: 1.0.0.1
version: 1.0.0.2
synopsis: Hlint integration plugin with Haskell Language Server
description:
Please see Haskell Language Server Readme (https://github.com/haskell/haskell-language-server#readme)
Expand Down
2 changes: 1 addition & 1 deletion plugins/hls-retrie-plugin/hls-retrie-plugin.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-retrie-plugin
version: 1.0.0.1
version: 1.0.0.2
synopsis: Retrie integration plugin for Haskell Language Server
license: Apache-2.0
license-file: LICENSE
Expand Down
2 changes: 1 addition & 1 deletion plugins/hls-splice-plugin/hls-splice-plugin.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hls-splice-plugin
version: 1.0.0.0
version: 1.0.0.1
synopsis:
HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes

Expand Down
2 changes: 1 addition & 1 deletion plugins/hls-tactics-plugin/hls-tactics-plugin.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.4
category: Development
name: hls-tactics-plugin
version: 1.0.0.0
version: 1.1.0.0
synopsis: Wingman plugin for Haskell Language Server
description: Please see README.md
author: Sandy Maguire, Reed Mullanix
Expand Down