Skip to content

Commit eb58f13

Browse files
authored
Merge pull request #1153 from jneira/prepare-0.8.0-2
Prepare 0.8.0 (versions)
2 parents 7fa3ff6 + ca55441 commit eb58f13

File tree

7 files changed

+24
-9
lines changed

7 files changed

+24
-9
lines changed

.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ jobs:
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: |

ChangeLog.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
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)
@@ -19,7 +20,8 @@
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

cabal.project

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ package ghcide
2323

2424
write-ghc-environment-files: never
2525

26-
index-state: 2020-12-13T11:31:58Z
26+
index-state: 2021-01-03T11:58:44Z
2727

2828
allow-newer:
2929
active:base,

ghcide/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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)

ghcide/ghcide.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cabal-version: 1.20
22
build-type: Simple
33
category: Development
44
name: ghcide
5-
version: 0.6.0.2
5+
version: 0.7.0.0
66
license: Apache-2.0
77
license-file: LICENSE
88
author: 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,

haskell-language-server.cabal

+4-4
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.1.0
4+
version: 0.8.0.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>
@@ -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

hls-plugin-api/hls-plugin-api.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-plugin-api
3-
version: 0.5.0.1
3+
version: 0.6.0.0
44
synopsis: Haskell Language Server API for plugin communication
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>

0 commit comments

Comments
 (0)