Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Release/1.0.5 #1836

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: renv
Type: Package
Title: Project Environments
Version: 1.0.4.9000
Version: 1.0.5
Authors@R: c(
person("Kevin", "Ushey", role = c("aut", "cre"), email = "kevin@rstudio.com",
comment = c(ORCID = "0000-0003-2880-7407")),
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# renv (development version)

# renv 1.0.5

* `renv` now only writes a `.renvignore` file into the cache directory
if the cache appears to be part of the current project.
Expand Down
6 changes: 6 additions & 0 deletions tests/testthat.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

library(tools)
library(testthat)
library(renv, warn.conflicts = FALSE)

Expand All @@ -7,4 +8,9 @@ if (!renv:::renv_tests_supported()) {
if (!interactive()) quit(status = 0L)
}

if (Sys.info()[["sysname"]] == "Linux") {
cachedir <- R_user_dir("renv", "cache")
dir.create(cachedir, recursive = TRUE, showWarnings = FALSE)
}

test_check("renv")
Loading