Skip to content

Commit

Permalink
closes #1966
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey committed Aug 20, 2024
1 parent 348f491 commit 7c6cd46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# renv (development version)

* `renv::checkout()` now also checks out the version of `renv` available
and associated with the requested snapshot date. (#1966)

* Fixed an issue where `renv::hydrate()` did not hydrate packages which
were also listed as dependencies within a project's `DESCRIPTION` file.
(#1970)
Expand Down
2 changes: 1 addition & 1 deletion R/checkout.R
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ renv_checkout_remotes <- function(packages, project) {
# remove ignored packages -- note we intentionally do this before
# computing recursive dependencies as we don't want to allow users
# to ignore a recursive dependency of a required package
ignored <- c("renv", renv_project_ignored_packages(project))
ignored <- renv_project_ignored_packages(project)
packages <- setdiff(packages, ignored)

# compute recursive dependencies for these packages
Expand Down

0 comments on commit 7c6cd46

Please sign in to comment.