Skip to content

Commit ebe4611

Browse files
authored
Merge pull request #824 from ocsigen/dune-3.18
Bump dune from 3.6 to 3.18
2 parents d558bc7 + c62f070 commit ebe4611

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

dune-project

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
(lang dune 3.6)
1+
(lang dune 3.18)
22

33
(name eliom)
44
(version 11.1.1)
55
(maintainers [email protected])
66
77
(license "LGPL-2.1-only WITH OCaml-LGPL-linking-exception")
88

9+
(generate_opam_files true)
10+
911
(package
1012
(name eliom)
1113
(synopsis "Advanced client/server Web and mobile framework")
@@ -20,26 +22,24 @@ The client-side code is compiled to JS using Ocsigen Js_of_ocaml or to Wasm usin
2022
(homepage https://ocsigen.org/eliom/)
2123
(source (github ocsigen/eliom))
2224
(depends
23-
(ocaml (>= 4.12.0))
25+
(ocaml (and (>= 4.12) (< 5.3)))
2426
ocamlfind
2527
ppx_deriving
26-
(ppxlib (>= 0.15.0))
27-
(js_of_ocaml-compiler (and (>= 5.5.0) (< 6.0.0)))
28-
(js_of_ocaml (>= 5.5.0))
29-
(js_of_ocaml-lwt (>= 5.5.0))
28+
(ppxlib (>= 0.15))
29+
(js_of_ocaml-compiler (and (>= 5.5) (< 6.0)))
30+
(js_of_ocaml (>= 5.5))
31+
(js_of_ocaml-lwt (>= 5.5))
3032
(js_of_ocaml-ocamlbuild :build)
31-
(js_of_ocaml-ppx (>= 5.5.0))
32-
(js_of_ocaml-ppx_deriving_json (>= 5.5.0))
33-
(js_of_ocaml-tyxml (>= 5.5.0))
33+
(js_of_ocaml-ppx (>= 5.5))
34+
(js_of_ocaml-ppx_deriving_json (>= 5.5))
35+
(js_of_ocaml-tyxml (>= 5.5))
3436
lwt_log
35-
(tyxml (and (>= 4.6.0) (< 4.7.0)))
36-
(ocsigenserver (and (>= 6.0.0) (< 7.0.0)))
37+
(tyxml (and (>= 4.6) (< 4.7)))
38+
(ocsigenserver (and (>= 6.0) (< 7.0)))
3739
lwt_log
3840
(ipaddr (>= 2.1))
3941
(reactiveData (>= 0.2.1))
4042
base-bytes
4143
(ocsipersist (and (>= 2.0) (< 3.0)))
4244
ppx_optcomp
4345
(xml-light (>= "2.5"))))
44-
45-
(generate_opam_files)

eliom.opam

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ homepage: "https://ocsigen.org/eliom/"
1818
bug-reports: "https://github.com/ocsigen/eliom/issues"
1919
depends: [
2020
"dune" {>= "3.6"}
21-
"ocaml" {>= "4.12.0"}
21+
"ocaml" {>= "4.12" & < "5.3"}
2222
"ocamlfind"
2323
"ppx_deriving"
24-
"ppxlib" {>= "0.15.0"}
25-
"js_of_ocaml-compiler" {>= "5.5.0" & < "6.0.0"}
26-
"js_of_ocaml" {>= "5.5.0"}
27-
"js_of_ocaml-lwt" {>= "5.5.0"}
24+
"ppxlib" {>= "0.15"}
25+
"js_of_ocaml-compiler" {>= "5.5" & < "6.0"}
26+
"js_of_ocaml" {>= "5.5"}
27+
"js_of_ocaml-lwt" {>= "5.5"}
2828
"js_of_ocaml-ocamlbuild" {build}
29-
"js_of_ocaml-ppx" {>= "5.5.0"}
30-
"js_of_ocaml-ppx_deriving_json" {>= "5.5.0"}
31-
"js_of_ocaml-tyxml" {>= "5.5.0"}
29+
"js_of_ocaml-ppx" {>= "5.5"}
30+
"js_of_ocaml-ppx_deriving_json" {>= "5.5"}
31+
"js_of_ocaml-tyxml" {>= "5.5"}
3232
"lwt_log"
33-
"tyxml" {>= "4.6.0" & < "4.7.0"}
34-
"ocsigenserver" {>= "6.0.0" & < "7.0.0"}
33+
"tyxml" {>= "4.6" & < "4.7"}
34+
"ocsigenserver" {>= "6.0" & < "7.0"}
3535
"lwt_log"
3636
"ipaddr" {>= "2.1"}
3737
"reactiveData" {>= "0.2.1"}

0 commit comments

Comments
 (0)