Skip to content

Commit b284e04

Browse files
authored
build(opam): update bounds for 5.5 support (#2916)
1 parent cdba6be commit b284e04

File tree

7 files changed

+19
-15
lines changed

7 files changed

+19
-15
lines changed

dune-project

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@
3636
(ocaml
3737
(and
3838
(>= "4.08")
39-
(< "5.5")))
39+
(< "5.6")))
4040
(ocamlfind :build)
41-
(cmdliner (>= "1.1.0"))
41+
(cmdliner
42+
(>= "1.1.0"))
4243
(dune-build-info
4344
(>= 2.9.3))
4445
(menhir
@@ -59,7 +60,7 @@
5960
(ocaml
6061
(and
6162
(>= "4.08")
62-
(< "5.5")))
63+
(< "5.6")))
6364
(reason
6465
(= :version))
6566
(utop

flake.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reason.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ homepage: "https://reasonml.github.io/"
1616
bug-reports: "https://github.com/reasonml/reason/issues"
1717
depends: [
1818
"dune" {>= "3.18"}
19-
"ocaml" {>= "4.08" & < "5.5"}
19+
"ocaml" {>= "4.08" & < "5.6"}
2020
"ocamlfind" {build}
2121
"cmdliner" {>= "1.1.0"}
2222
"dune-build-info" {>= "2.9.3"}

rtop.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ homepage: "https://reasonml.github.io/"
1414
bug-reports: "https://github.com/reasonml/reason/issues"
1515
depends: [
1616
"dune" {>= "3.18"}
17-
"ocaml" {>= "4.08" & < "5.5"}
17+
"ocaml" {>= "4.08" & < "5.6"}
1818
"reason" {= version}
1919
"utop" {>= "2.0"}
2020
"cppo"

src/reason-parser/dune

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
(action
3535
(with-stdout-to
3636
%{targets}
37-
(run ../menhir-error-processor/menhir_error_processor.exe
37+
(run
38+
../menhir-error-processor/menhir_error_processor.exe
3839
reason_parser.cmly))))
3940

4041
(rule

src/vendored-omp/src/dune

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
; (libraries reason_migrate_parsetree))
2929

3030
(rule
31-
(copy# compiler-functions/%{read:compiler-functions-file}
31+
(copy#
32+
compiler-functions/%{read:compiler-functions-file}
3233
migrate_parsetree_compiler_functions.ml))
3334

3435
(rule

test/dune

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@
1515
(cram
1616
(applies_to rtopIntegration)
1717
(package rtop)
18-
(enabled_if (= %{os_type} Unix))
18+
(enabled_if
19+
(= %{os_type} Unix))
1920
(deps %{bin:ocamlc} %{bin:rtop}))

0 commit comments

Comments
 (0)