diff --git a/DESCRIPTION b/DESCRIPTION index 99b5fcb927..003d3d377b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,11 +4,11 @@ Version: 0.4.1 Title: A Grammar of Data Manipulation Description: A fast, consistent tool for working with data frame like objects, both in memory and out of memory. -Authors@R: as.person(c( - "Hadley Wickham [aut, cre]", - "Romain Francois [aut]", - "RStudio [cph]" - )) +Authors@R: c( + person("Hadley", "Wickham", , "hadley@rstudio.com", c("aut", "cre")), + person("Romain", "Francois", , "romain@r-enthusiasts.com", role = "aut"), + person("RStudio", role = "cph") + ) URL: https://github.com/hadley/dplyr BugReports: https://github.com/hadley/dplyr/issues Depends: diff --git a/cran-comments.md b/cran-comments.md index 4851bc2eb8..e3cf29d72c 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,4 +1,4 @@ -This is a patch release to fix a build error on the CRAN Mavericks builder. No package behaviour has changed. +This is a patch release to fix a build error on the CRAN Mavericks builder. No package behaviour has changed. (I also updated Authors@R to the new specification.) ---