Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

(package
(name lwt_retry)
(version 5.9.0+dev)
(version 5.9.0)
(synopsis "Utilities for retrying Lwt computations")
(authors "Shon Feder")
(maintainers
Expand All @@ -27,13 +27,16 @@

(package
(name lwt_ppx)
(version 6.0.0-beta02)
(version 6.0.0)
(synopsis "PPX syntax for Lwt, providing something similar to async/await from JavaScript")
(maintenance_intent "(latest)")
(depends
(ocaml (>= 4.08))
(ppxlib (>= 0.36))
(lwt (>= 6))))
(lwt (>= 6)))
(conflicts
(lwt (= 6.0.0~alpha00))
(lwt (= 6.0.0-beta01))))

(package
(name lwt_ppx__ppx_let_tests)
Expand All @@ -47,7 +50,7 @@

(package
(name lwt_react)
(version 1.2.0+dev)
(version 1.2.0)
(synopsis "Helpers for using React with Lwt")
(maintenance_intent "(latest)")
(depends
Expand All @@ -58,7 +61,7 @@

(package
(name lwt_direct)
(version 6.0.0-beta02)
(version 6.0.0)
(synopsis "Direct-style control-flow and `await` for Lwt")
(authors "Simon Cruanes")
(depends
Expand All @@ -68,7 +71,7 @@

(package
(name lwt_runtime_events)
(version 6.0.0-beta02)
(version 6.0.0)
(synopsis "Emit runtime events to trace the execution of Lwt programs")
(authors "Raphaël Proust")
(depends
Expand All @@ -77,7 +80,7 @@

(package
(name lwt)
(version 6.0.0-beta02)
(version 6.0.0)
(synopsis "Promises and event-driven I/O")
(description "A promise is a value that may become determined in the future.

Expand Down
2 changes: 1 addition & 1 deletion lwt.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "6.0.0-beta02"
version: "6.0.0"
synopsis: "Promises and event-driven I/O"
description: """
A promise is a value that may become determined in the future.
Expand Down
2 changes: 1 addition & 1 deletion lwt_direct.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "6.0.0-beta02"
version: "6.0.0"
synopsis: "Direct-style control-flow and `await` for Lwt"
maintainer: [
"Raphaël Proust <[email protected]>" "Anton Bachin <[email protected]>"
Expand Down
6 changes: 5 additions & 1 deletion lwt_ppx.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "6.0.0-beta02"
version: "6.0.0"
synopsis:
"PPX syntax for Lwt, providing something similar to async/await from JavaScript"
maintainer: [
Expand All @@ -18,6 +18,10 @@ depends: [
"lwt" {>= "6"}
"odoc" {with-doc}
]
conflicts: [
"lwt" {= "6.0.0~alpha00"}
"lwt" {= "6.0.0-beta01"}
]
build: [
["dune" "subst"] {dev}
[
Expand Down
2 changes: 1 addition & 1 deletion lwt_react.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.2.0+dev"
version: "1.2.0"
synopsis: "Helpers for using React with Lwt"
maintainer: [
"Raphaël Proust <[email protected]>" "Anton Bachin <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion lwt_retry.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "5.9.0+dev"
version: "5.9.0"
synopsis: "Utilities for retrying Lwt computations"
maintainer: [
"Raphaël Proust <[email protected]>" "Shon Feder <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion lwt_runtime_events.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "6.0.0-beta02"
version: "6.0.0"
synopsis: "Emit runtime events to trace the execution of Lwt programs"
maintainer: [
"Raphaël Proust <[email protected]>" "Anton Bachin <[email protected]>"
Expand Down
Loading