Get NEWS for a package from CRAN or local
pac_news(
pac,
version = NULL,
at = NULL,
local = FALSE,
lib.loc = .libPaths(),
repos = "https://cran.rstudio.com/"
)character a package name.
character version of a package. Default: NULL
Date from which to take the version. Default: NULL
logical if to use local repository (or newest remote packages). Default: FALSE
character vector of search paths with local packages. Default: .libPaths()
character vector repositories URLs to use. Used only for the validation. Default https://cran.rstudio.com/
character with NEWS content.
Results are cached for 30 minutes with memoise package.
if (FALSE) { # \dontrun{
pacs::pac_news("dplyr", version = "0.8.0")
pacs::pac_news("dplyr", at = as.Date("2019-02-01"))
} # }