File tree 7 files changed +95
-94
lines changed
7 files changed +95
-94
lines changed Original file line number Diff line number Diff line change @@ -58,16 +58,16 @@ defaults: &defaults
58
58
59
59
version : 2
60
60
jobs :
61
- stackage-lts21 :
61
+ stackage-lts22 :
62
62
docker :
63
- - image : haskell:9.4.8 -slim-buster
63
+ - image : haskell:9.6.5 -slim-buster
64
64
environment :
65
- - STACK_FILE : " stack-lts21 .yaml"
65
+ - STACK_FILE : " stack-lts22 .yaml"
66
66
<< : *defaults
67
67
68
68
stackage-nightly :
69
69
docker :
70
- - image : haskell:9.6.4 -slim-buster
70
+ - image : haskell:9.8.2 -slim-buster
71
71
environment :
72
72
- STACK_FILE : " stack.yaml"
73
73
<< : *defaults
@@ -76,5 +76,5 @@ workflows:
76
76
version : 2
77
77
multiple-ghcs :
78
78
jobs :
79
- - stackage-lts21
79
+ - stackage-lts22
80
80
- stackage-nightly
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ library
62
62
, deepseq
63
63
, dependent-map
64
64
, dependent-sum
65
- , Diff ^>= 0.4.0
65
+ , Diff ^>= 0.5
66
66
, directory
67
67
, dlist
68
68
, enummapset
Original file line number Diff line number Diff line change @@ -263,7 +263,6 @@ library hls-cabal-plugin
263
263
, lsp-types ^>= 2.3
264
264
, regex-tdfa ^>= 1.3.1
265
265
, text
266
- , text-rope
267
266
, transformers
268
267
, unordered-containers >= 0.2.10.0
269
268
, containers
@@ -455,7 +454,7 @@ library hls-eval-plugin
455
454
, bytestring
456
455
, containers
457
456
, deepseq
458
- , Diff ^>= 0.4.0
457
+ , Diff ^>= 0.5
459
458
, dlist
460
459
, extra
461
460
, filepath
@@ -584,7 +583,6 @@ library hls-rename-plugin
584
583
, hls-plugin-api == 2.8.0.0
585
584
, haskell-language-server :hls-refactor-plugin
586
585
, lens
587
- , lsp
588
586
, lsp-types
589
587
, mtl
590
588
, mod
@@ -638,7 +636,6 @@ library hls-retrie-plugin
638
636
, base >= 4.12 && < 5
639
637
, bytestring
640
638
, containers
641
- , directory
642
639
, extra
643
640
, ghc
644
641
, ghcide == 2.8.0.0
@@ -655,7 +652,6 @@ library hls-retrie-plugin
655
652
, text
656
653
, transformers
657
654
, unordered-containers
658
- , filepath
659
655
660
656
default-extensions :
661
657
DataKinds
@@ -845,7 +841,6 @@ library hls-module-name-plugin
845
841
, aeson
846
842
, base >= 4.12 && < 5
847
843
, containers
848
- , directory
849
844
, filepath
850
845
, ghcide == 2.8.0.0
851
846
, hls-plugin-api == 2.8.0.0
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ library
60
60
, data-default
61
61
, dependent-map
62
62
, dependent-sum >= 0.7
63
- , Diff ^>= 0.4.0
63
+ , Diff ^>= 0.5
64
64
, dlist
65
65
, extra
66
66
, filepath
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ resolver : lts-22.25 # ghc-9.6.5
2
+
3
+ packages :
4
+ - .
5
+ - ./hie-compat
6
+ - ./hls-graph
7
+ - ./ghcide/
8
+ - ./hls-plugin-api
9
+ - ./hls-test-utils
10
+ # - ./shake-bench
11
+
12
+ ghc-options :
13
+ " $everything " : -haddock
14
+
15
+ allow-newer : true
16
+ allow-newer-deps :
17
+ - extensions
18
+
19
+ extra-deps :
20
+ - Diff-0.5
21
+ - floskell-0.11.1
22
+ - hiedb-0.6.0.1
23
+ - hie-bios-0.14.0
24
+ - implicit-hie-0.1.4.0
25
+ - lsp-2.7.0.0
26
+ - lsp-test-0.17.1.0
27
+ - lsp-types-2.3.0.0
28
+ - monad-dijkstra-0.1.1.4 # 5
29
+ - retrie-1.2.3
30
+
31
+ # stan and friends
32
+ - stan-0.1.3.0
33
+ - dir-traverse-0.2.3.0
34
+ - extensions-0.1.0.1
35
+ - tomland-1.3.3.2
36
+ - trial-0.0.0.0
37
+ - trial-optparse-applicative-0.0.0.0
38
+ - trial-tomland-0.0.0.0
39
+ - validation-selective-0.2.0.0
40
+
41
+ configure-options :
42
+ ghcide :
43
+ - --disable-library-for-ghci
44
+ haskell-language-server :
45
+ - --disable-library-for-ghci
46
+
47
+ flags :
48
+ haskell-language-server :
49
+ pedantic : true
50
+ stylish-haskell :
51
+ ghc-lib : true
52
+ retrie :
53
+ BuildExecutable : false
54
+
55
+ nix :
56
+ packages : [icu libcxx zlib]
57
+
58
+ concurrent-tests : false
Original file line number Diff line number Diff line change 1
- resolver : lts-22.9 # ghc-9.6.4
1
+ resolver : nightly-2024-06-12 # ghc-9.8.2
2
2
3
3
packages :
4
4
- .
@@ -13,41 +13,47 @@ ghc-options:
13
13
" $everything " : -haddock
14
14
15
15
allow-newer : true
16
+ allow-newer-deps :
17
+ - extensions
18
+ - hw-fingertree
19
+ - retrie
16
20
17
21
extra-deps :
18
- - floskell-0.11.1
19
- - retrie-1.2.2
20
- - hiedb-0.6.0 .0
21
- - hie-bios-0.14 .0
22
- - implicit-hie -0.1.4.0
23
- - lsp-2.7.0.0
24
- - lsp-test-0.17.1.0
25
- - lsp-types-2.3.0.0
26
- - monad-dijkstra-0.1.1.4
27
-
28
- # stan and friends
29
- - stan-0.1.2.0
30
- - dir-traverse-0.2.3.0
31
- - extensions -0.1.0.1
32
- - tomland-1.3 .3.2
33
- - trial -0.0 .0.0
34
- - trial-optparse-applicative -0.0.0.0
35
- - trial-tomland -0.0.0.0
36
- - validation-selective -0.2 .0.0
22
+ - floskell-0.11.1
23
+ - hiedb-0.6.0.1
24
+ - hie-bios-0.14 .0
25
+ - implicit- hie-0.1.4 .0
26
+ - hw-fingertree -0.1.2.1
27
+ - lsp-2.7.0.0
28
+ - lsp-test-0.17.1.0
29
+ - lsp-types-2.3.0.0
30
+ - monad-dijkstra-0.1.1.5
31
+ - stylish-haskell-0.14.6.0
32
+ - retrie-1.2.3
33
+
34
+ # stan dependencies not found in the stackage snapshot
35
+ - stan -0.1.3.0
36
+ - dir-traverse-0.2 .3.0
37
+ - extensions -0.1 .0.1
38
+ - trial-0.0.0.0
39
+ - trial-optparse-applicative -0.0.0.0
40
+ - trial-tomland -0.0 .0.0
37
41
38
42
configure-options :
39
43
ghcide :
40
- - --disable-library-for-ghci
44
+ - --disable-library-for-ghci
41
45
haskell-language-server :
42
- - --disable-library-for-ghci
46
+ - --disable-library-for-ghci
43
47
44
48
flags :
45
49
haskell-language-server :
46
50
pedantic : true
51
+ stylish-haskell :
52
+ ghc-lib : true
47
53
retrie :
48
54
BuildExecutable : false
49
55
50
56
nix :
51
- packages : [ icu libcxx zlib ]
57
+ packages : [icu libcxx zlib]
52
58
53
59
concurrent-tests : false
You can’t perform that action at this time.
0 commit comments