Skip to content
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,6 +1,6 @@
Package: rdev
Title: R Development Tools
Version: 1.15.3
Version: 1.15.4
Authors@R:
person("John", "Benninghoff", , "jbenninghoff@mac.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-6230-4742"))
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# rdev 1.15.4

* Updated for lintr 3.3.0

# rdev 1.15.3

* Updated `use_rdev_pkgdown()` to disable the new `pkgdown::build_llm_docs()` by default (update `use_rdev_pkgdown()`)
Expand Down
2 changes: 1 addition & 1 deletion R/build.R
Original file line number Diff line number Diff line change
Expand Up @@ -233,5 +233,5 @@ build_analysis_site <- function(pkg = ".", ...) {
fs::dir_copy(fs::path(tmp_dir, "docs"), pkg)

writeLines("build_analysis_site() complete")
return(invisible(yaml::read_yaml(fs::path(tmp_dir, "_site.yml"))))
invisible(yaml::read_yaml(fs::path(tmp_dir, "_site.yml")))
}
2 changes: 1 addition & 1 deletion R/setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ use_analysis_package <- function(use_quarto = TRUE, prompt = FALSE) {
ret <- list(
dirs = analysis_dirs, rbuildignore = analysis_rbuildignore, gitignore = analysis_gitignore
)
return(invisible(ret))
invisible(ret)
}

#' Use rdev pkgdown
Expand Down
2 changes: 1 addition & 1 deletion R/to_document.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ to_document <- function(file_path, new_path, overwrite = FALSE) {

new_file <- fs::file_copy(file_path, new_path, overwrite = overwrite)
writeLines(notebook, new_file)
return(new_file)
new_file
}

#' Get analysis notebook metadata
Expand Down
1 change: 1 addition & 0 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ deps_check <- function(type, exclude_base = TRUE) {
}
if (type == "extra") {
writeLines("desc::desc_get_deps() not found by renv:")
# nolint next: return_linter. kept for clarity.
return(desc_deps[desc_deps$package %in% setdiff(desc_deps$package, renv_deps$Package), ])
}
}
Expand Down
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,12 @@ ci()
#>
#> url_check()
#> html_url_check()
#> # A tibble: 2 × 9
#> # A tibble: 3 × 9
#> URL From Status Message New CRAN Spaces R root
#> <chr> <nam> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 http://covr.r-lib.org/ref… <chr> 200 OK http… "" "" "" /Use…
#> 2 http://r-lib.github.io/rc… <chr> 200 OK http… "" "" "" /Use…
#> 1 http://covr.r-lib.org/ref… <chr> 200 OK "htt… "" "" "" /Use…
#> 2 http://r-lib.github.io/rc… <chr> 200 OK "htt… "" "" "" /Use…
#> 3 https://medium.com/@Hadri… <chr> 403 Forbid… "" "" "" "" /Use…
#>
#> Setting env vars: NOT_CRAN="true", CI="true"
#> rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")
Expand All @@ -234,10 +235,10 @@ ci()
#> * creating vignettes ... OK
#> * checking for LF line-endings in source and make files and shell scripts
#> * checking for empty or unneeded directories
#> * building ‘rdev_1.15.3.tar.gz’
#> * building ‘rdev_1.15.4.tar.gz’
#>
#> ── R CMD check ─────────────────────────────────────────────────────────────────
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/RtmpKqcBbC/file10fe43aa54c3d/rdev.Rcheck’
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/RtmpQtVTk6/file11ac21c748d0f/rdev.Rcheck’
#> * using R version 4.5.2 (2025-10-31)
#> * using platform: aarch64-apple-darwin20
#> * R was compiled by
Expand All @@ -247,7 +248,7 @@ ci()
#> * using session charset: UTF-8
#> * using option ‘--no-manual’
#> * checking for file ‘rdev/DESCRIPTION’ ... OK
#> * this is package ‘rdev’ version ‘1.15.3
#> * this is package ‘rdev’ version ‘1.15.4
#> * package encoding: UTF-8
#> * checking package namespace information ... OK
#> * checking package dependencies ... OK
Expand Down Expand Up @@ -300,9 +301,10 @@ ci()
#> * checking package vignettes ... OK
#> * checking re-building of vignette outputs ... OK
#> * DONE
#>
#> Status: OK
#> ── R CMD check results ──────────────────────────────────────── rdev 1.15.3 ────
#> Duration: 25.2s
#> ── R CMD check results ──────────────────────────────────────── rdev 1.15.4 ────
#> Duration: 26.7s
#>
#> 0 errors ✔ | 0 warnings ✔ | 0 notes ✔
```
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/TODO.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/analysis-package-layout.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/rdev.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/style-guide.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 11 additions & 9 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pandoc: 3.8.2.1
pandoc: 3.8.3
pkgdown: 2.2.0
pkgdown_sha: ~
articles:
analysis-package-layout: analysis-package-layout.html
rdev: rdev.html
style-guide: style-guide.html
last_built: 2025-11-24T02:18Z
last_built: 2025-12-04T19:56Z
urls:
reference: https://jabenninghoff.github.io/rdev/reference
article: https://jabenninghoff.github.io/rdev/articles
2 changes: 1 addition & 1 deletion docs/reference/build_analysis_site.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/build_quarto_site.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/build_rdev_site.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/check_renv.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/ci.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/create_github_repo.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading