Skip to content

dune-project fixes from 5.[89].1 #1053

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@

(package
(name lwt_ppx)
(version dev)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is needed.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added it mostly because then it's easier to remember to set the version field when doing a release. Otherwise I have to remember to add the version field which I'm likely to forget.

Probably should just write a release script, but in the meantime I'd rather have that.

(synopsis "PPX syntax for Lwt, providing something similar to async/await from JavaScript")
(depends
(ocaml (>= 4.08))
(ppxlib (>= 0.16.0))
(ppxlib (and (>= 0.16.0) (< 0.36)))
(ppx_let :with-test)
(bisect_ppx :with-test)
lwt))
Expand All @@ -46,6 +47,7 @@

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

Expand Down
1 change: 1 addition & 0 deletions lwt.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "dev"
synopsis: "Promises and event-driven I/O"
description: """
A promise is a value that may become determined in the future.
Expand Down
3 changes: 2 additions & 1 deletion lwt_ppx.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "dev"
synopsis:
"PPX syntax for Lwt, providing something similar to async/await from JavaScript"
maintainer: [
Expand All @@ -13,7 +14,7 @@ bug-reports: "https://github.com/ocsigen/lwt/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.08"}
"ppxlib" {>= "0.16.0"}
"ppxlib" {>= "0.16.0" & < "0.36"}
"ppx_let" {with-test}
"bisect_ppx" {with-test}
"lwt"
Expand Down
Loading