Skip to content

Commit c220f80

Browse files
committed
Require OCaml 4.14+
1 parent d23fa92 commit c220f80

File tree

6 files changed

+6
-9
lines changed

6 files changed

+6
-9
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,6 @@ jobs:
111111
ocaml_compiler: ocaml-variants.5.0.0+options,ocaml-option-static
112112
- os: ubuntu-24.04
113113
ocaml_compiler: ocaml-variants.4.14.2+options,ocaml-option-static
114-
- os: ubuntu-24.04
115-
ocaml_compiler: ocaml-variants.4.13.0+options,ocaml-option-static
116114

117115
runs-on: ${{matrix.os}}
118116

analysis.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license: "LGPL-3.0-or-later"
77
homepage: "https://github.com/rescript-lang/rescript-compiler"
88
bug-reports: "https://github.com/rescript-lang/rescript-compiler/issues"
99
depends: [
10-
"ocaml" {>= "4.10"}
10+
"ocaml" {>= "4.14"}
1111
"cppo" {= "1.6.9"}
1212
"dune"
1313
]

dune-project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
(synopsis "ReScript compiler")
2020
(depends
2121
(ocaml
22-
(>= 4.10))
22+
(>= 4.14))
2323
(ocamlformat
2424
(and
2525
:with-test
@@ -47,7 +47,7 @@
4747
(synopsis "ReScript Analysis")
4848
(depends
4949
(ocaml
50-
(>= 4.10))
50+
(>= 4.14))
5151
(cppo
5252
(= 1.6.9))
5353
dune))
@@ -57,7 +57,7 @@
5757
(synopsis "ReScript Tools")
5858
(depends
5959
(ocaml
60-
(>= 4.10))
60+
(>= 4.14))
6161
(cppo
6262
(= 1.6.9))
6363
analysis

rescript.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license: "LGPL-3.0-or-later"
77
homepage: "https://github.com/rescript-lang/rescript-compiler"
88
bug-reports: "https://github.com/rescript-lang/rescript-compiler/issues"
99
depends: [
10-
"ocaml" {>= "4.10"}
10+
"ocaml" {>= "4.14"}
1111
"ocamlformat" {with-test & = "0.26.2"}
1212
"yojson" {with-test & = "2.2.2"}
1313
"ocaml-lsp-server" {with-dev-setup & = "1.19.0"}

tests/syntax_benchmarks/dune

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
(enabled_if
1111
(and
1212
(<> %{profile} browser)
13-
(>= %{ocaml_version} "4.14.0")
1413
(or
1514
(= %{system} macosx)
1615
; or one of Linuxes (see https://github.com/ocaml/ocaml/issues/10613)

tools.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license: "LGPL-3.0-or-later"
77
homepage: "https://github.com/rescript-lang/rescript-compiler"
88
bug-reports: "https://github.com/rescript-lang/rescript-compiler/issues"
99
depends: [
10-
"ocaml" {>= "4.10"}
10+
"ocaml" {>= "4.14"}
1111
"cppo" {= "1.6.9"}
1212
"analysis"
1313
"dune"

0 commit comments

Comments
 (0)