Skip to content

Prepare 0.7.1 #684

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 4 commits into from
Dec 17, 2020
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: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
env:
GHC_VER: ${{ matrix.ghc }}
run: |
# We normalize windows+choco ghc version 8.10.2.2
GHC_VERSION=$(echo $GHC_VERSION | sed 's/8.10.2.2/8.10.2/g')
HLS_BUILD=$(find dist-newstyle \( -name 'hls' -o -name 'hls.exe' \) -type f)
HLS=haskell-language-server-$GHC_VER
mv $HLS_BUILD $HLS${{env.EXE_EXT}}
Expand Down
16 changes: 16 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog for haskell-language-server

## 0.7.1

- This is a minor bug fix release:
- It fixes an issue that removed accidentally desugarer warnings (#676).
- It disables auto extend import lists in completions, see #679.
### Pull requests merged

- Disable auto extend import lists in completions. It fixes #679.
([#685)](https://github.com/haskell/haskell-language-server/pull/685) by @pepeiborra
- Restore kick (#676). It fixes #676.
([#677)](https://github.com/haskell/haskell-language-server/pull/677) by @wz1000
- README: Remove instructions to execute data target
([#675)](https://github.com/haskell/haskell-language-server/pull/675) by @andys8
- Add hlint tests over cpp, extensions and ignore hints
([#674)](https://github.com/haskell/haskell-language-server/pull/674) by @jneira

## 0.7.0

* This version contains mainly refactors and updates of upstream packages
Expand Down
2 changes: 1 addition & 1 deletion haskell-language-server.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.2
category: Development
name: haskell-language-server
version: 0.7.0.0
version: 0.7.1.0
synopsis: LSP server for GHC
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
Expand Down