Skip to content

Commit 7cb0da3

Browse files
authored
Merge pull request ocaml-multicore#348 from talex5/release
Also constrain versions of ocaml-variants and ocaml-system
2 parents 9faa07b + 485b348 commit 7cb0da3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

dune-project

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
(synopsis "Effect-based direct-style IO API for OCaml")
1313
(description "An effect-based IO API for multicore OCaml with fibers.")
1414
(conflicts
15-
(ocaml-base-compiler (< 5.0.0~beta1)))
15+
(ocaml-base-compiler (< 5.0.0~beta1))
16+
(ocaml-variants (< 5.0.0~beta1))
17+
(ocaml-system (< 5.0.0~beta1)))
1618
(depends
1719
(ocaml (>= 5.0.0))
1820
(bigstringaf (>= 0.9.0))

eio.opam

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ depends: [
2626
]
2727
conflicts: [
2828
"ocaml-base-compiler" {< "5.0.0~beta1"}
29+
"ocaml-variants" {< "5.0.0~beta1"}
30+
"ocaml-system" {< "5.0.0~beta1"}
2931
]
3032
build: [
3133
["dune" "subst"] {dev}

0 commit comments

Comments
 (0)