File tree Expand file tree Collapse file tree 7 files changed +24
-9
lines changed Expand file tree Collapse file tree 7 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 6565 echo "LINUX_CABAL_ARGS=--enable-executable-static --ghc-options=-split-sections" >> $GITHUB_ENV
6666 echo "GHC_VERSION=$GHC_VER" >> $GITHUB_ENV
6767
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+
6875 - name : Build Server
6976 # Try building it twice in case of flakey builds on Windows
7077 run : |
Original file line number Diff line number Diff line change 33## 0.8.0
44
55- 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.
67- It has a new brand plugin: hls-class-plugin, which helps to write class instances
78
89![ gif] ( https://user-images.githubusercontent.com/12473268/103059293-af071f80-4572-11eb-963a-7e76b45f28b9.gif )
1920 - ghcide lives now directly in this repository
2021 - the test suite has been cleaned and improved (continuing the work done in 0.7.0)
2122
22- thanks to all contributors and happy new year!
23+
24+ Thanks to all contributors and happy new year!
2325
2426### Pull requests merged for 0.8.0
2527
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ package ghcide
2323
2424write-ghc-environment-files : never
2525
26- index-state : 2020-12-13T11:31 :58Z
26+ index-state : 2021-01-03T11:58 :44Z
2727
2828allow-newer :
2929 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+
17### 0.6.0.2 (2020-12-26)
28* Fix disappearing diagnostics bug (#959 ) - (Pepe Iborra)
39* 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
22build-type : Simple
33category : Development
44name : ghcide
5- version : 0.6 .0.2
5+ version : 0.7 .0.0
66license : Apache-2.0
77license-file : LICENSE
88author : Digital Asset and Ghcide contributors
@@ -56,7 +56,7 @@ library
5656 haskell-lsp-types == 0.22. *,
5757 haskell-lsp == 0.22. *,
5858 hie-compat,
59- hls-plugin-api,
59+ hls-plugin-api >= 0.6 ,
6060 lens,
6161 mtl,
6262 network-uri,
Original file line number Diff line number Diff line change 11cabal-version : 2.2
22category : Development
33name : haskell-language-server
4- version : 0.7.1 .0
4+ version : 0.8.0 .0
55synopsis : LSP server for GHC
66description :
77 Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -59,10 +59,10 @@ library
5959 , containers
6060 , data-default
6161 , ghc
62- , ghcide >= 0.6.0.1
62+ , ghcide >= 0.7
6363 , gitrev
6464 , haskell-lsp ^>= 0.22
65- , hls-plugin-api >= 0.5
65+ , hls-plugin-api >= 0.6
6666 , hslogger
6767 , optparse-applicative
6868 , optparse-simple
@@ -346,7 +346,7 @@ common hls-test-utils
346346 , data-default
347347 , haskell-lsp
348348 , hie-bios
349- , hls-plugin-api
349+ , hls-plugin-api >= 0.6
350350 , hslogger
351351 , hspec
352352 , hspec-core
Original file line number Diff line number Diff line change 11cabal-version : 2.2
22name : hls-plugin-api
3- version : 0.5 .0.1
3+ version : 0.6 .0.0
44synopsis : Haskell Language Server API for plugin communication
55description :
66 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