File tree 10 files changed +3
-17
lines changed
hls-graph/src/Development/IDE/Graph/Internal
10 files changed +3
-17
lines changed Original file line number Diff line number Diff line change 85
85
, "9.0.2"
86
86
, "8.10.7"
87
87
, "8.8.4"
88
- , "8.6.5"
89
88
]
90
89
os : [ "ubuntu-latest"
91
90
, "macOS-latest"
Original file line number Diff line number Diff line change 48
48
, "9.0.2"
49
49
, "8.10.7"
50
50
, "8.8.4"
51
- , "8.6.5"
52
51
]
53
52
os : [ "ubuntu-latest"
54
53
]
Original file line number Diff line number Diff line change 41
41
ghc : [ "9.0.2"
42
42
, "8.10.7"
43
43
, "8.8.4"
44
- , "8.6.5"
45
44
]
46
45
exclude :
47
46
- ghc : " 9.0.2"
Original file line number Diff line number Diff line change 64
64
, "9.0.2"
65
65
, "8.10.7"
66
66
, "8.8.4"
67
- , "8.6.5"
68
67
]
69
68
os : [ "ubuntu-latest"
70
69
, "macOS-latest"
86
85
- os : ubuntu-latest
87
86
ghc : ' 8.8.4'
88
87
test : true
89
- - os : ubuntu-latest
90
- ghc : ' 8.6.5'
91
- test : true
92
88
- os : windows-latest
93
89
ghc : ' 9.4.2'
94
90
test : true
101
97
- os : windows-latest
102
98
ghc : ' 8.10.7'
103
99
test : true
104
- - os : windows-latest
105
- ghc : ' 8.6.5'
106
- test : true
107
100
# only build rest of supported ghc versions for windows
108
101
- os : windows-latest
109
102
ghc : ' 8.8.4'
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ RUN sudo install-packages build-essential curl libffi-dev libffi7 libgmp-dev lib
7
7
echo 'export PATH=$HOME/.cabal/bin:$HOME/.local/bin:$PATH' >> $HOME/.bashrc && \
8
8
. /home/gitpod/.ghcup/env && \
9
9
# Install all verions of GHC that HLS supports. Putting GHC into Docker image makes workspace start much faster.
10
- ghcup install ghc 8.6.5 && \
11
10
ghcup install ghc 8.8.4 && \
12
11
ghcup install ghc 8.10.7 && \
13
12
ghcup install ghc 9.0.2 && \
Original file line number Diff line number Diff line change 1
- 8.6.5,cabal.project
2
1
8.8.4,cabal.project
3
2
8.10.7,cabal.project
4
3
9.0.2,cabal.project
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Support status (see the support policy below for more details):
32
32
| 8.8.4 | [ latest] ( https://github.com/haskell/haskell-language-server/releases/latest ) | full support, will be deprecated after LTS and HLS full support for ghc-9.2 |
33
33
| 8.8.3 | [ 1.5.1] ( https://github.com/haskell/haskell-language-server/releases/1.5.1 ) | deprecated |
34
34
| 8.8.2 | [ 1.2.0] ( https://github.com/haskell/haskell-language-server/releases/tag/1.2.0 ) | deprecated |
35
- | 8.6.5 | [ latest ] ( https://github.com/haskell/haskell-language-server/releases/latest ) | full support, will be deprecated after LTS and HLS full suppot for ghc-9.2 |
35
+ | 8.6.5 | [ 1.8.0.0 ] ( https://github.com/haskell/haskell-language-server/releases/tag/1.8.0.0 ) | deprecated |
36
36
| 8.6.4 | [ 1.4.0] ( https://github.com/haskell/haskell-language-server/releases/tag/1.4.0 ) | deprecated |
37
37
38
38
GHC versions not in the list have never been supported by HLS.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ description:
13
13
A library for building Haskell IDE's on top of the GHC API.
14
14
homepage : https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme
15
15
bug-reports : https://github.com/haskell/haskell-language-server/issues
16
- tested-with : GHC == 8.6.5 || == 8. 8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
16
+ tested-with : GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
17
17
extra-source-files : README.md CHANGELOG.md
18
18
test/data/**/*.project
19
19
test/data/**/*.cabal
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ copyright: The Haskell IDE Team
14
14
license : Apache-2.0
15
15
license-file : LICENSE
16
16
build-type : Simple
17
- tested-with : GHC == 8.6.5 || == 8. 8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
17
+ tested-with : GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
18
18
extra-source-files :
19
19
README.md
20
20
ChangeLog.md
Original file line number Diff line number Diff line change @@ -13,9 +13,7 @@ module Development.IDE.Graph.Internal.Types where
13
13
import Control.Applicative
14
14
import Control.Monad.Catch
15
15
#if __GLASGOW_HASKELL__ < 808
16
- -- Needed in GHC 8.6.5
17
16
import Control.Concurrent.STM.Stats (TVar , atomically )
18
- import Control.Monad.Fail
19
17
#else
20
18
import GHC.Conc (TVar , atomically )
21
19
#endif
You can’t perform that action at this time.
0 commit comments