-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Encourage adding email in author & maintainer info (#10848)
For packages submitted to the opam-repository, it would help to have the email addresses of the maintainers. See ocaml/infrastructure#152. This commit subtly encourages package authors/maintainers to do so. Signed-off-by: Puneeth Chaganti <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,8 +45,8 @@ let example = | |
{ source = | ||
Some (Host (Source_kind.Host.Github { user = "username"; repo = "reponame" })) | ||
; license = Some [ "LICENSE" ] | ||
; authors = Some [ "Author Name" ] | ||
; maintainers = Some [ "Maintainer Name" ] | ||
; authors = Some [ "Author Name <[email protected]>" ] | ||
; maintainers = Some [ "Maintainer Name <[email protected]>" ] | ||
; documentation = | ||
Some "https://url/to/documentation" | ||
(* homepage and bug_reports are inferred from the source *) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters