File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 67
67
env :
68
68
GHC_VER : ${{ matrix.ghc }}
69
69
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')
70
72
HLS_BUILD=$(find dist-newstyle \( -name 'hls' -o -name 'hls.exe' \) -type f)
71
73
HLS=haskell-language-server-$GHC_VER
72
74
mv $HLS_BUILD $HLS${{env.EXE_EXT}}
Original file line number Diff line number Diff line change 1
1
# Changelog for haskell-language-server
2
2
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
+
3
19
## 0.7.0
4
20
5
21
* This version contains mainly refactors and updates of upstream packages
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
category : Development
3
3
name : haskell-language-server
4
- version : 0.7.0 .0
4
+ version : 0.7.1 .0
5
5
synopsis : LSP server for GHC
6
6
description :
7
7
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
You can’t perform that action at this time.
0 commit comments