File tree Expand file tree Collapse file tree 7 files changed +34
-16
lines changed
servant-swagger-ui-example
servant-swagger-ui-jensoleg Expand file tree Collapse file tree 7 files changed +34
-16
lines changed Original file line number Diff line number Diff line change 32
32
strategy :
33
33
matrix :
34
34
include :
35
+ - compiler : ghc-9.6.2
36
+ compilerKind : ghc
37
+ compilerVersion : 9.6.2
38
+ setup-method : ghcup
39
+ allow-failure : false
35
40
- compiler : ghc-9.4.5
36
41
compilerKind : ghc
37
42
compilerVersion : 9.4.5
@@ -256,10 +261,14 @@ jobs:
256
261
- name : prepare for constraint sets
257
262
run : |
258
263
rm -f cabal.project.local
264
+ - name : constraint set servant-0.20
265
+ run : |
266
+ if [ $((HCNUMVER >= 81000)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.20.*' --dependencies-only -j2 all ; fi
267
+ if [ $((HCNUMVER >= 81000)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.20.*' all ; fi
259
268
- name : constraint set servant-0.19
260
269
run : |
261
- $ CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19.*' --dependencies-only -j2 all
262
- $ CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19.*' all
270
+ if [ $((HCNUMVER < 90600)) -ne 0 ] ; then $ CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19.*' --dependencies-only -j2 all ; fi
271
+ if [ $((HCNUMVER < 90600)) -ne 0 ] ; then $ CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19.*' all ; fi
263
272
- name : constraint set servant-0.18
264
273
run : |
265
274
if [ $((HCNUMVER < 90000)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.18.*' --dependencies-only -j2 all ; fi
Original file line number Diff line number Diff line change @@ -15,3 +15,7 @@ constraint-set servant-0.18
15
15
constraint-set servant-0.19
16
16
ghc: >= 8.6 && <9.6
17
17
constraints: servant ==0.19.*
18
+
19
+ constraint-set servant-0.20
20
+ ghc: >= 8.10 && <9.8
21
+ constraints: servant ==0.20.*
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ tested-with:
24
24
|| == 9.0.2
25
25
|| == 9.2.7
26
26
|| == 9.4.5
27
+ || == 9.6.2
27
28
28
29
extra-source-files : Changelog.md
29
30
@@ -35,14 +36,14 @@ library
35
36
hs-source-dirs : src
36
37
ghc-options : -Wall
37
38
build-depends :
38
- base >= 4.7 && < 4.18
39
+ base >= 4.7 && < 4.19
39
40
, aeson >= 0.8.0.2 && < 2.2
40
41
, blaze-markup >= 0.7.0.2 && < 0.9
41
42
, bytestring >= 0.10.4.0 && < 0.12
42
43
, http-media >= 0.7.1.3 && < 0.9
43
- , servant >= 0.14 && < 0.20
44
+ , servant >= 0.14 && < 0.21
44
45
, servant-blaze >= 0.8 && < 0.10
45
- , servant-server >= 0.14 && < 0.20
46
+ , servant-server >= 0.14 && < 0.21
46
47
, text >= 1.2.3.0 && < 2.1
47
48
, transformers >= 0.3 && < 0.7
48
49
, transformers-compat >= 0.3 && < 0.8
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ tested-with:
19
19
|| == 9.0.2
20
20
|| == 9.2.7
21
21
|| == 9.4.5
22
+ || == 9.6.2
22
23
23
24
source-repository head
24
25
type : git
@@ -29,8 +30,8 @@ executable servant-swagger-ui-example
29
30
ghc-options : -threaded
30
31
build-depends :
31
32
aeson >= 0.8.0.2 && < 2.2
32
- , base >= 4.7 && < 4.18
33
- , base-compat >= 0.9.3 && < 0.13
33
+ , base >= 4.7 && < 4.19
34
+ , base-compat >= 0.9.3 && < 0.14
34
35
, lens >= 4.7.0.1 && < 5.3
35
36
, servant
36
37
, servant-server
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ tested-with:
23
23
|| == 9.0.2
24
24
|| == 9.2.7
25
25
|| == 9.4.5
26
+ || == 9.6.2
26
27
27
28
extra-source-files :
28
29
jensoleg.index.html.tmpl
@@ -84,12 +85,12 @@ library
84
85
ghc-options : -Wall
85
86
build-depends : servant-swagger-ui-core >= 0.3.5 && < 0.4
86
87
build-depends :
87
- base >= 4.7 && < 4.18
88
+ base >= 4.7 && < 4.19
88
89
, aeson >= 0.8.0.2 && < 2.2
89
90
, bytestring >= 0.10.4.0 && < 0.12
90
91
, file-embed-lzma >= 0 && < 0.1
91
- , servant >= 0.14 && < 0.20
92
- , servant-server >= 0.14 && < 0.20
92
+ , servant >= 0.14 && < 0.21
93
+ , servant-server >= 0.14 && < 0.21
93
94
, text >= 1.2.3.0 && < 2.1
94
95
95
96
exposed-modules : Servant.Swagger.UI.JensOleG
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ tested-with:
23
23
|| == 9.0.2
24
24
|| == 9.2.7
25
25
|| == 9.4.5
26
+ || == 9.6.2
26
27
27
28
extra-source-files :
28
29
redoc-dist-1.22.3/redoc.min.js
@@ -38,12 +39,12 @@ library
38
39
ghc-options : -Wall
39
40
build-depends : servant-swagger-ui-core >= 0.3.5 && < 0.4
40
41
build-depends :
41
- base >= 4.7 && < 4.18
42
+ base >= 4.7 && < 4.19
42
43
, aeson >= 0.8.0.2 && < 2.2
43
44
, bytestring >= 0.10.4.0 && < 0.12
44
45
, file-embed-lzma >= 0 && < 0.1
45
- , servant >= 0.14 && < 0.20
46
- , servant-server >= 0.14 && < 0.20
46
+ , servant >= 0.14 && < 0.21
47
+ , servant-server >= 0.14 && < 0.21
47
48
, text >= 1.2.3.0 && < 2.1
48
49
49
50
exposed-modules : Servant.Swagger.UI.ReDoc
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ tested-with:
23
23
|| == 9.0.2
24
24
|| == 9.2.7
25
25
|| == 9.4.5
26
+ || == 9.6.2
26
27
27
28
extra-source-files :
28
29
CHANGELOG.md
@@ -54,12 +55,12 @@ library
54
55
ghc-options : -Wall
55
56
build-depends : servant-swagger-ui-core >= 0.3.5 && < 0.4
56
57
build-depends :
57
- base >= 4.7 && < 4.18
58
+ base >= 4.7 && < 4.19
58
59
, aeson >= 0.8.0.2 && < 2.2
59
60
, bytestring >= 0.10.4.0 && < 0.12
60
61
, file-embed-lzma >= 0 && < 0.1
61
- , servant >= 0.14 && < 0.20
62
- , servant-server >= 0.14 && < 0.20
62
+ , servant >= 0.14 && < 0.21
63
+ , servant-server >= 0.14 && < 0.21
63
64
, text >= 1.2.3.0 && < 2.1
64
65
65
66
exposed-modules : Servant.Swagger.UI
You can’t perform that action at this time.
0 commit comments