From fafea24338fa2b7bcf3066b11be6aa880e2b0db0 Mon Sep 17 00:00:00 2001 From: Kevin Ushey Date: Tue, 15 Aug 2023 08:56:52 -0700 Subject: [PATCH] prepare for release (#1649) --- DESCRIPTION | 2 +- NEWS.md | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 3f9df06fa..8b7d4511d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: renv Type: Package Title: Project Environments -Version: 1.0.1.9000 +Version: 1.0.2 Authors@R: c( person("Kevin", "Ushey", role = c("aut", "cre"), email = "kevin@rstudio.com", comment = c(ORCID = "0000-0003-2880-7407")), diff --git a/NEWS.md b/NEWS.md index a4bd70be1..c4dcc5db9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# renv (development version) +# renv 1.0.2 * renv now parses package `NAMESPACE` files for imported dependencies. (#1637) diff --git a/README.md b/README.md index 1da0963a1..23baf24b9 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ install.packages("renv") A diagram showing the most important verbs and nouns of renv. Projects start with init(), which creates a project library using packages from the system library. snapshot() updates the lockfile using the packages installed in the project library, where restore() installs packages into the project library using the metadata from the lockfile, and status() compares the lockfile to the project library. You install and update packages from CRAN and GitHub using install() and update(), but because you'll need to do this for multiple projects, renv uses cache to make this fast. Use `renv::init()` to initialize renv in a new or existing project. This -will set up up **project library**, containing all the packages you’re +will set up a **project library**, containing all the packages you’re currently using. The packages (and all the metadata needed to reinstall them) are recorded into a **lockfile**, `renv.lock`, and a `.Rprofile` ensures that the library is used every time you open that project.