File tree 7 files changed +24
-9
lines changed
7 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 65
65
echo "LINUX_CABAL_ARGS=--enable-executable-static --ghc-options=-split-sections" >> $GITHUB_ENV
66
66
echo "GHC_VERSION=$GHC_VER" >> $GITHUB_ENV
67
67
68
+ - name : Set some macOs specific things
69
+ if : matrix.os == 'macOS-latest'
70
+ env :
71
+ GHC_VER : ${{ matrix.ghc }}
72
+ run : |
73
+ echo "GHC_VERSION=$GHC_VER" >> $GITHUB_ENV
74
+
68
75
- name : Build Server
69
76
# Try building it twice in case of flakey builds on Windows
70
77
run : |
Original file line number Diff line number Diff line change 3
3
## 0.8.0
4
4
5
5
- This version adds support for ghc-8.10.3
6
+ - ` hls-plugin-api ` has been bumped to 0.6.0.0 and ` ghcide ` has been bumped from 0.6.0.1 to 0.7.0.0.
6
7
- It has a new brand plugin: hls-class-plugin, which helps to write class instances
7
8
8
9
![ gif] ( https://user-images.githubusercontent.com/12473268/103059293-af071f80-4572-11eb-963a-7e76b45f28b9.gif )
19
20
- ghcide lives now directly in this repository
20
21
- the test suite has been cleaned and improved (continuing the work done in 0.7.0)
21
22
22
- thanks to all contributors and happy new year!
23
+
24
+ Thanks to all contributors and happy new year!
23
25
24
26
### Pull requests merged for 0.8.0
25
27
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ package ghcide
23
23
24
24
write-ghc-environment-files : never
25
25
26
- index-state : 2020-12-13T11:31 :58Z
26
+ index-state : 2021-01-03T11:58 :44Z
27
27
28
28
allow-newer :
29
29
active :base,
Original file line number Diff line number Diff line change
1
+ ### 0.7.0 (2020-01-03)
2
+
3
+ * Retry a failed cradle if the cradle descriptor changes (#762 ) - (Pepe Iborra)
4
+ * Fix extend imports regression (#769 ) - (Pepe Iborra)
5
+ * Perform memory measurement on SIGUSR1 (#761 ) - (Pepe Iborra)
6
+
1
7
### 0.6.0.2 (2020-12-26)
2
8
* Fix disappearing diagnostics bug (#959 ) - (Pepe Iborra)
3
9
* Deduplicate module not found diagnostics (#952 ) - (Pepe Iborra)
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cabal-version: 1.20
2
2
build-type : Simple
3
3
category : Development
4
4
name : ghcide
5
- version : 0.6 .0.2
5
+ version : 0.7 .0.0
6
6
license : Apache-2.0
7
7
license-file : LICENSE
8
8
author : Digital Asset and Ghcide contributors
@@ -56,7 +56,7 @@ library
56
56
haskell-lsp-types == 0.22. *,
57
57
haskell-lsp == 0.22. *,
58
58
hie-compat,
59
- hls-plugin-api,
59
+ hls-plugin-api >= 0.6 ,
60
60
lens,
61
61
mtl,
62
62
network-uri,
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.1 .0
4
+ version : 0.8.0 .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>
@@ -59,10 +59,10 @@ library
59
59
, containers
60
60
, data-default
61
61
, ghc
62
- , ghcide >= 0.6.0.1
62
+ , ghcide >= 0.7
63
63
, gitrev
64
64
, haskell-lsp ^>= 0.22
65
- , hls-plugin-api >= 0.5
65
+ , hls-plugin-api >= 0.6
66
66
, hslogger
67
67
, optparse-applicative
68
68
, optparse-simple
@@ -346,7 +346,7 @@ common hls-test-utils
346
346
, data-default
347
347
, haskell-lsp
348
348
, hie-bios
349
- , hls-plugin-api
349
+ , hls-plugin-api >= 0.6
350
350
, hslogger
351
351
, hspec
352
352
, hspec-core
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : hls-plugin-api
3
- version : 0.5 .0.1
3
+ version : 0.6 .0.0
4
4
synopsis : Haskell Language Server API for plugin communication
5
5
description :
6
6
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