Skip to content

Commit 9dcbb16

Browse files
committed
add renv to renv lockfile too
1 parent c1dc6aa commit 9dcbb16

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

renv.lock

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3076,6 +3076,59 @@
30763076
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
30773077
"Repository": "CRAN"
30783078
},
3079+
"renv": {
3080+
"Package": "renv",
3081+
"Version": "1.1.4",
3082+
"Source": "Repository",
3083+
"Type": "Package",
3084+
"Title": "Project Environments",
3085+
"Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@rstudio.com\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
3086+
"Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.",
3087+
"License": "MIT + file LICENSE",
3088+
"URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv",
3089+
"BugReports": "https://github.com/rstudio/renv/issues",
3090+
"Imports": [
3091+
"utils"
3092+
],
3093+
"Suggests": [
3094+
"BiocManager",
3095+
"cli",
3096+
"compiler",
3097+
"covr",
3098+
"cpp11",
3099+
"devtools",
3100+
"gitcreds",
3101+
"jsonlite",
3102+
"jsonvalidate",
3103+
"knitr",
3104+
"miniUI",
3105+
"modules",
3106+
"packrat",
3107+
"pak",
3108+
"R6",
3109+
"remotes",
3110+
"reticulate",
3111+
"rmarkdown",
3112+
"rstudioapi",
3113+
"shiny",
3114+
"testthat",
3115+
"uuid",
3116+
"waldo",
3117+
"yaml",
3118+
"webfakes"
3119+
],
3120+
"Encoding": "UTF-8",
3121+
"RoxygenNote": "7.3.2",
3122+
"VignetteBuilder": "knitr",
3123+
"Config/Needs/website": "tidyverse/tidytemplate",
3124+
"Config/testthat/edition": "3",
3125+
"Config/testthat/parallel": "true",
3126+
"Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes",
3127+
"NeedsCompilation": "no",
3128+
"Author": "Kevin Ushey [aut, cre] (<https://orcid.org/0000-0003-2880-7407>), Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
3129+
"Maintainer": "Kevin Ushey <kevin@rstudio.com>",
3130+
"Repository": "CRAN"
3131+
},
30793132
"reprex": {
30803133
"Package": "reprex",
30813134
"Version": "2.1.1",

renv/activate.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
local({
33

44
# the requested version of renv
5-
version <- "1.0.3"
5+
version <- "1.1.4"
66
attr(version, "sha") <- NULL
77

88
# the project directory

0 commit comments

Comments
 (0)