Skip to content

Commit

Permalink
Merge pull request #469 from emillon/lower-bounds
Browse files Browse the repository at this point in the history
opam: fix lower bounds
  • Loading branch information
Leonidas-from-XIV authored May 3, 2023
2 parents 939b905 + dc35ac4 commit 17e1cae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ with [Dune](https://github.com/ocaml/dune) and hosted on
(opam-format (>= 2.1.0))
(opam-state (>= 2.1.0))
(opam-core (>= 2.1.0))
rresult
(rresult (>= 0.6.0))
logs
odoc
(alcotest :with-test)
(yojson (>= 1.6)))
(conflicts
(result (< 1.5))))
(result (< 1.5))
(dune (= 2.7.0))))
3 changes: 2 additions & 1 deletion dune-release.opam
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ depends: [
"opam-format" {>= "2.1.0"}
"opam-state" {>= "2.1.0"}
"opam-core" {>= "2.1.0"}
"rresult"
"rresult" {>= "0.6.0"}
"logs"
"odoc"
"alcotest" {with-test}
"yojson" {>= "1.6"}
]
conflicts: [
"result" {< "1.5"}
"dune" {= "2.7.0"}
]
build: [
["dune" "subst"] {dev}
Expand Down

0 comments on commit 17e1cae

Please sign in to comment.