Skip to content

Commit 452a4b1

Browse files
committed
Update ci.yml
1 parent 818b6fd commit 452a4b1

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
# Verify that the compiler still builds with the oldest OCaml version we support.
6565
- os: ubuntu-24.04
66-
ocaml_compiler: ocaml-variants.5.0.1+options,ocaml-option-static
66+
ocaml_compiler: ocaml-variants.5.0.0+options,ocaml-option-static
6767
node-target: linux-x64
6868
rust-target: x86_64-unknown-linux-musl
6969

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" {>= "5.0.1"}
10+
"ocaml" {>= "5.0.0"}
1111
"cppo" {= "1.8.0"}
1212
"dune" {>= "3.17"}
1313
"odoc" {with-doc}

dune-project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
(synopsis "ReScript compiler")
2020
(depends
2121
(ocaml
22-
(>= 5.0.1))))
22+
(>= 5.0.0))))
2323

2424
(package
2525
(name analysis)
2626
(synopsis "ReScript Analysis")
2727
(depends
2828
(ocaml
29-
(>= 5.0.1))
29+
(>= 5.0.0))
3030
(cppo
3131
(= 1.8.0))
3232
dune))
@@ -36,7 +36,7 @@
3636
(synopsis "ReScript Tools")
3737
(depends
3838
(ocaml
39-
(>= 5.0.1))
39+
(>= 5.0.0))
4040
(cmarkit
4141
(>= 0.3.0))
4242
(cppo

rescript.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ build: [
2121
]
2222
]
2323
depends: [
24-
"ocaml" {>= "5.0.1"}
24+
"ocaml" {>= "5.0.0"}
2525
"cppo" {= "1.8.0"}
2626
"dune" {>= "3.17"}
2727
"flow_parser" {= "0.267.0"}

rescript.opam.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
depends: [
2-
"ocaml" {>= "5.0.1"}
2+
"ocaml" {>= "5.0.0"}
33
"cppo" {= "1.8.0"}
44
"dune" {>= "3.17"}
55
"flow_parser" {= "0.267.0"}

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" {>= "5.0.1"}
10+
"ocaml" {>= "5.0.0"}
1111
"cmarkit" {>= "0.3.0"}
1212
"cppo" {= "1.8.0"}
1313
"analysis"

0 commit comments

Comments
 (0)