Skip to content

Commit 065e94e

Browse files
committed
_
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 148b07b commit 065e94e

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

dune-project

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,27 @@
2121
"Shon Feder <[email protected]>")
2222
(depends
2323
(ocaml (>= 4.08))
24-
(lwt (>= 5.3.0))
24+
(lwt (>= 5.3))
2525
(bisect_ppx :with-test)))
2626

2727
(package
2828
(name lwt_ppx)
2929
(synopsis "PPX syntax for Lwt, providing something similar to async/await from JavaScript")
3030
(depends
3131
(ocaml (>= 4.08))
32-
(ppxlib (>= 0.16.0))
32+
(ppxlib (>= 0.36))
3333
(ppx_let :with-test)
3434
(bisect_ppx :with-test)
35-
(lwt (>= 5.7.0))))
35+
(lwt (>= 5.7))))
3636

3737
(package
3838
(name lwt_react)
3939
(synopsis "Helpers for using React with Lwt")
4040
(depends
4141
(ocaml (>= 4.08))
42-
(cppo (and :build (>= 1.1.0)))
43-
(lwt (>= 3.0.0))
44-
(react (>= 1.0.0))
42+
(cppo (and :build (>= 1.1)))
43+
(lwt (>= 3.0))
44+
(react (>= 1.0))
4545
(bisect_ppx :with-test)))
4646

4747
(package
@@ -58,9 +58,9 @@ synchronization primitives. Code can be run in parallel on an opt-in basis.
5858
")
5959
(depends
6060
(ocaml (>= 4.08))
61-
(cppo (and :build (>= 1.1.0)))
61+
(cppo (and :build (>= 1.1)))
6262
(ocamlfind (and :dev (>= 1.7.3-1)))
63-
(odoc (and :with-doc (>= 2.3.0)))
63+
(odoc (and :with-doc (>= 2.3)))
6464
(bisect_ppx :with-test)
6565
dune-configurator
6666
ocplib-endian)

lwt.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ bug-reports: "https://github.com/ocsigen/lwt/issues"
2222
depends: [
2323
"dune" {>= "2.7"}
2424
"ocaml" {>= "4.08"}
25-
"cppo" {build & >= "1.1.0"}
25+
"cppo" {build & >= "1.1"}
2626
"ocamlfind" {dev & >= "1.7.3-1"}
27-
"odoc" {with-doc & >= "2.3.0"}
27+
"odoc" {with-doc & >= "2.3"}
2828
"bisect_ppx" {with-test}
2929
"dune-configurator"
3030
"ocplib-endian"

lwt_ppx.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ bug-reports: "https://github.com/ocsigen/lwt/issues"
1313
depends: [
1414
"dune" {>= "2.7"}
1515
"ocaml" {>= "4.08"}
16-
"ppxlib" {>= "0.16.0"}
16+
"ppxlib" {>= "0.36"}
1717
"ppx_let" {with-test}
1818
"bisect_ppx" {with-test}
19-
"lwt" {>= "5.7.0"}
19+
"lwt" {>= "5.7"}
2020
"odoc" {with-doc}
2121
]
2222
build: [

lwt_react.opam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ bug-reports: "https://github.com/ocsigen/lwt/issues"
1212
depends: [
1313
"dune" {>= "2.7"}
1414
"ocaml" {>= "4.08"}
15-
"cppo" {build & >= "1.1.0"}
16-
"lwt" {>= "3.0.0"}
17-
"react" {>= "1.0.0"}
15+
"cppo" {build & >= "1.1"}
16+
"lwt" {>= "3.0"}
17+
"react" {>= "1.0"}
1818
"bisect_ppx" {with-test}
1919
"odoc" {with-doc}
2020
]

lwt_retry.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bug-reports: "https://github.com/ocsigen/lwt/issues"
1212
depends: [
1313
"dune" {>= "2.7"}
1414
"ocaml" {>= "4.08"}
15-
"lwt" {>= "5.3.0"}
15+
"lwt" {>= "5.3"}
1616
"bisect_ppx" {with-test}
1717
"odoc" {with-doc}
1818
]

0 commit comments

Comments
 (0)