Skip to content

Commit 71c6731

Browse files
committed
Fix author and maintainer fields
1 parent 120b586 commit 71c6731

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

dune-project

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
(package
1616
(name lwt_retry)
1717
(synopsis "Utilities for retrying Lwt computations")
18+
(authors "Shon Feder")
19+
(maintainers
20+
"Raphaël Proust <[email protected]>"
21+
"Shon Feder <[email protected]>")
1822
(depends
1923
(ocaml (>= 4.08))
2024
lwt))

lwt_retry.opam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ synopsis: "Utilities for retrying Lwt computations"
44
maintainer: [
55
"Raphaël Proust <[email protected]>" "Shon Feder <[email protected]>"
66
]
7-
authors: ["Jérôme Vouillon" "Jérémie Dimino"]
7+
authors: ["Shon Feder"]
88
license: "MIT"
99
homepage: "https://github.com/ocsigen/lwt"
1010
doc: "https://ocsigen.org/lwt"
1111
bug-reports: "https://github.com/ocsigen/lwt/issues"
1212
depends: [
13-
"dune" {>= "1.12"}
13+
"dune" {>= "2.0"}
1414
"ocaml" {>= "4.08"}
15-
"lwt" {>= "3.0.0"}
15+
"lwt"
1616
]
1717
build: [
1818
["dune" "subst"] {pinned}

test/retry/dune

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
(name main)
33
(libraries lwttester lwt_retry))
44

5-
(alias
6-
(name runtest)
5+
(rule
6+
(alias runtest)
77
(package lwt_retry)
88
(action
99
(run %{exe:main.exe})))

0 commit comments

Comments
 (0)