Skip to content

Commit f1c0969

Browse files
authored
Prepare ghcide 1.2.0.2 and HLS 1.1.0 (haskell#1722)
* Update CHANGELOG * Bump ghcide to 1.2.0.2 * Downgrade release building runner to ubuntu-18.04
1 parent f933011 commit f1c0969

File tree

16 files changed

+40
-27
lines changed

16 files changed

+40
-27
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
ghc: ['8.10.4', '8.10.3', '8.10.2', '8.8.4', '8.8.3', '8.8.2', '8.6.5', '8.6.4']
20-
os: [ubuntu-latest, macOS-latest, windows-latest]
20+
os: [ubuntu-18.04, macOS-latest, windows-latest]
2121
exclude:
2222
- os: windows-latest
2323
ghc: '8.10.2' # broken due to https://gitlab.haskell.org/ghc/ghc/-/issues/18550
@@ -58,7 +58,7 @@ jobs:
5858
echo "GHC_VERSION=$GHC_VER" >> $GITHUB_ENV
5959
6060
- name: Set some linux specific things
61-
if: matrix.os == 'ubuntu-latest'
61+
if: matrix.os == 'ubuntu-18.04'
6262
env:
6363
GHC_VER: ${{ matrix.ghc }}
6464
run: |
@@ -156,7 +156,7 @@ jobs:
156156
# macOS and Linux, used by ghcup
157157
tar:
158158
needs: build
159-
runs-on: ubuntu-latest
159+
runs-on: ubuntu-18.04
160160
strategy:
161161
matrix:
162162
os: [Linux, macOS]

ChangeLog.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,18 @@ As always, there are many internal bug fixes and performance improvements in ghc
3434
* test suite of plugins are reorganized, which no longer need to be run with `test-server` executable
3535
* two new packages `hls-test-utils` and `hls-stylish-haskell-plugin` are extracted
3636

37-
This version uses `lsp-1.2.0`, `hls-plugin-api-1.1.0`, and `ghcide-1.2.0`.
37+
This version uses `lsp-1.2.0`, `hls-plugin-api-1.1.0`, and `ghcide-1.2.0.2`.
3838

3939
### Pull requests merged for 1.1.0
4040

41+
- Restore compat. with haddock-library 1.8
42+
([#1717](https://github.com/haskell/haskell-language-server/pull/1717)) by @pepeiborra
43+
- Don't suggest destruct actions for already-destructed terms
44+
([#1715](https://github.com/haskell/haskell-language-server/pull/1715)) by @isovector
4145
- Add keybindings and jump to hole to the Wingman README
4246
([#1712](https://github.com/haskell/haskell-language-server/pull/1712)) by @isovector
47+
- Bracketing for snippet completions
48+
([#1709](https://github.com/haskell/haskell-language-server/pull/1709)) by @OliverMadine
4349
- Prepare ghcide 1.2.0
4450
([#1707](https://github.com/haskell/haskell-language-server/pull/1707)) by @berberman
4551
- Adjust bounds

ghcide/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 1.2.0.2 (2021-04-13)
2+
* Bracketing for snippet completions (#1709) - Oliver Madine
3+
* Don't suggest destruct actions for already-destructed terms (#1715) - Sandy Maguire
4+
5+
### 1.2.0.1 (2021-04-12)
6+
* restore compat. with haddock-library 1.8 (#1717) - Pepe Iborra
7+
18
### 1.2.0 (2021-04-11)
29
* Emit holes as diagnostics (#1653) - Sandy Maguire
310
* Fix ghcide and HLS enter lsp mode by default (#1692) - Potato Hatsue

ghcide/ghcide.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cabal-version: 2.4
22
build-type: Simple
33
category: Development
44
name: ghcide
5-
version: 1.2.0.1
5+
version: 1.2.0.2
66
license: Apache-2.0
77
license-file: LICENSE
88
author: Digital Asset and Ghcide contributors

haskell-language-server.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ library
6363
, cryptohash-sha1
6464
, data-default
6565
, ghc
66-
, ghcide ^>= 1.2.0.0
66+
, ghcide ^>= 1.2.0.2
6767
, gitrev
6868
, lsp
6969
, hie-bios

hls-test-utils/hls-test-utils.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ library
4343
, directory
4444
, extra
4545
, filepath
46-
, ghcide ^>=1.2.0.0
46+
, ghcide ^>=1.2.0.2
4747
, hls-plugin-api ^>=1.1.0.0
4848
, hspec
4949
, hspec-core

plugins/hls-brittany-plugin/hls-brittany-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ library
2525
, filepath
2626
, ghc
2727
, ghc-boot-th
28-
, ghcide ^>=1.2.0.0
29-
, hls-plugin-api ^>=1.1
28+
, ghcide ^>=1.2.0.2
29+
, hls-plugin-api ^>=1.1.0.0
3030
, lens
3131
, lsp-types
3232
, text

plugins/hls-class-plugin/hls-class-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ library
2929
, containers
3030
, ghc
3131
, ghc-exactprint
32-
, ghcide ^>=1.2.0.0
33-
, hls-plugin-api ^>=1.1
32+
, ghcide ^>=1.2.0.2
33+
, hls-plugin-api ^>=1.1.0.0
3434
, lens
3535
, lsp
3636
, shake

plugins/hls-eval-plugin/hls-eval-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ library
6161
, ghc
6262
, ghc-boot-th
6363
, ghc-paths
64-
, ghcide ^>=1.2.0.0
64+
, ghcide ^>=1.2.0.2
6565
, hashable
66-
, hls-plugin-api ^>=1.1
66+
, hls-plugin-api ^>=1.1.0.0
6767
, lens
6868
, lsp
6969
, lsp-types

plugins/hls-explicit-imports-plugin/hls-explicit-imports-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ library
2121
, containers
2222
, deepseq
2323
, ghc
24-
, ghcide ^>=1.2.0.0
25-
, hls-plugin-api ^>=1.1
24+
, ghcide ^>=1.2.0.2
25+
, hls-plugin-api ^>=1.1.0.0
2626
, lsp
2727
, lsp-types
2828
, shake

plugins/hls-haddock-comments-plugin/hls-haddock-comments-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ library
2929
, containers
3030
, ghc
3131
, ghc-exactprint
32-
, ghcide ^>=1.2.0.0
33-
, hls-plugin-api ^>=1.1
32+
, ghcide ^>=1.2.0.2
33+
, hls-plugin-api ^>=1.1.0.0
3434
, lsp-types
3535
, text
3636
, unordered-containers

plugins/hls-hlint-plugin/hls-hlint-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ library
4141
, extra
4242
, filepath
4343
, ghc-exactprint >=0.6.3.4
44-
, ghcide ^>=1.2.0.0
44+
, ghcide ^>=1.2.0.2
4545
, hashable
4646
, hlint >=3.2
47-
, hls-plugin-api ^>=1.1
47+
, hls-plugin-api ^>=1.1.0.0
4848
, hslogger
4949
, lens
5050
, lsp

plugins/hls-retrie-plugin/hls-retrie-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ library
2323
, directory
2424
, extra
2525
, ghc
26-
, ghcide ^>=1.2
26+
, ghcide ^>=1.2.0.2
2727
, hashable
28-
, hls-plugin-api ^>=1.1
28+
, hls-plugin-api ^>=1.1.0.0
2929
, lsp
3030
, lsp-types
3131
, retrie >=0.1.1.0

plugins/hls-splice-plugin/hls-splice-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ library
4040
, foldl
4141
, ghc
4242
, ghc-exactprint
43-
, ghcide ^>=1.2.0.0
44-
, hls-plugin-api ^>=1.1
43+
, ghcide ^>=1.2.0.2
44+
, hls-plugin-api ^>=1.1.0.0
4545
, lens
4646
, lsp
4747
, retrie

plugins/hls-stylish-haskell-plugin/hls-stylish-haskell-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ library
2222
, filepath
2323
, ghc
2424
, ghc-boot-th
25-
, ghcide ^>=1.2.0.0
26-
, hls-plugin-api ^>=1.1
25+
, ghcide ^>=1.2.0.2
26+
, hls-plugin-api ^>=1.1.0.0
2727
, lsp-types
2828
, mtl
2929
, stylish-haskell ^>=0.12

plugins/hls-tactics-plugin/hls-tactics-plugin.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ library
7272
, ghc-boot-th
7373
, ghc-exactprint
7474
, ghc-source-gen
75-
, ghcide ^>=1.2.0.0
76-
, hls-plugin-api ^>=1.1
75+
, ghcide ^>=1.2.0.2
76+
, hls-plugin-api ^>=1.1.0.0
7777
, lens
7878
, lsp
7979
, mtl

0 commit comments

Comments
 (0)