From 912fd495787906653aa5fd318584eec69d1ecad7 Mon Sep 17 00:00:00 2001 From: Hugo Heuzard Date: Wed, 5 Jul 2023 00:43:58 +0200 Subject: [PATCH] Misc: lift constraint on ocaml version --- dune-project | 2 +- js_of_ocaml-compiler.opam | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dune-project b/dune-project index a3e9e081da..d2da6903bf 100644 --- a/dune-project +++ b/dune-project @@ -18,7 +18,7 @@ (description "Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. It makes it possible to run pure OCaml programs in JavaScript environment like browsers and Node.js") (depends - (ocaml (and (>= 4.08) (< 5.1))) + (ocaml (and (>= 4.08) (< 5.2))) (num :with-test) (ppx_expect (and (>= v0.14.2) :with-test)) (ppxlib (>= 0.15.0)) diff --git a/js_of_ocaml-compiler.opam b/js_of_ocaml-compiler.opam index 0630d7b7c1..a7aea9aa62 100644 --- a/js_of_ocaml-compiler.opam +++ b/js_of_ocaml-compiler.opam @@ -13,7 +13,7 @@ doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview" bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues" depends: [ "dune" {>= "3.7"} - "ocaml" {>= "4.08" & < "5.1"} + "ocaml" {>= "4.08" & < "5.2"} "num" {with-test} "ppx_expect" {>= "v0.14.2" & with-test} "ppxlib" {>= "0.15.0"}