Skip to content

Commit e4f677e

Browse files
authored
Merge pull request #684 from jneira/prepare-0.7.1
Prepare 0.7.1
2 parents 488fd46 + f4558e9 commit e4f677e

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ jobs:
6767
env:
6868
GHC_VER: ${{ matrix.ghc }}
6969
run: |
70+
# We normalize windows+choco ghc version 8.10.2.2
71+
GHC_VERSION=$(echo $GHC_VERSION | sed 's/8.10.2.2/8.10.2/g')
7072
HLS_BUILD=$(find dist-newstyle \( -name 'hls' -o -name 'hls.exe' \) -type f)
7173
HLS=haskell-language-server-$GHC_VER
7274
mv $HLS_BUILD $HLS${{env.EXE_EXT}}

ChangeLog.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog for haskell-language-server
22

3+
## 0.7.1
4+
5+
- This is a minor bug fix release:
6+
- It fixes an issue that removed accidentally desugarer warnings (#676).
7+
- It disables auto extend import lists in completions, see #679.
8+
### Pull requests merged
9+
10+
- Disable auto extend import lists in completions. It fixes #679.
11+
([#685)](https://github.com/haskell/haskell-language-server/pull/685) by @pepeiborra
12+
- Restore kick (#676). It fixes #676.
13+
([#677)](https://github.com/haskell/haskell-language-server/pull/677) by @wz1000
14+
- README: Remove instructions to execute data target
15+
([#675)](https://github.com/haskell/haskell-language-server/pull/675) by @andys8
16+
- Add hlint tests over cpp, extensions and ignore hints
17+
([#674)](https://github.com/haskell/haskell-language-server/pull/674) by @jneira
18+
319
## 0.7.0
420

521
* This version contains mainly refactors and updates of upstream packages

haskell-language-server.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.2
22
category: Development
33
name: haskell-language-server
4-
version: 0.7.0.0
4+
version: 0.7.1.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>

0 commit comments

Comments
 (0)