Skip to content
Closed
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: 2 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
- uses: r-lib/actions/setup-r@v2

- uses: r-lib/actions/setup-renv@v2
with:
bypass-cache: true

- name: Install current package
run: remotes::install_local(".", upgrade = "never")
Expand Down
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.2
Version: 1.15.3
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.3

* Updated `use_rdev_pkgdown()` to disable the new `pkgdown::build_llm_docs()` by default (update `use_rdev_pkgdown()`)

# rdev 1.15.2

* Minor updates to `upkeep_checklist()`, GitHub Actions (`missing-deps`)
Expand Down
6 changes: 4 additions & 2 deletions R/setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -685,8 +685,9 @@ use_analysis_package <- function(use_quarto = TRUE, prompt = FALSE) {
#' `pkgdown` to fix rendering of GitHub-style
# nolint next: line_length_linter.
#' [task lists](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/about-task-lists),
#' adds the GitHub Pages URL, and enables
#' [`template.light-switch`](https://pkgdown.r-lib.org/articles/customise.html#light-switch).
#' adds the GitHub Pages URL, enables
#' [`template.light-switch`](https://pkgdown.r-lib.org/articles/customise.html#light-switch), and
#' disables [pkgdown::build_llm_docs()].
#'
#' @inheritParams usethis::use_pkgdown
#'
Expand All @@ -700,6 +701,7 @@ use_rdev_pkgdown <- function(config_file = "_pkgdown.yml", destdir = "docs") {
urls <- desc::desc_get_urls()
pkg$url <- ifelse(!is.na(urls[2]), urls[1], ".")
pkg$template <- append(pkg$template, list(`light-switch` = TRUE))
pkg$`llm-docs` <- FALSE
# workaround for RStudio race condition
if (rlang::is_interactive()) {
writeLines(paste0("\nupdating ", config_file, "..."), sep = "")
Expand Down
1 change: 1 addition & 0 deletions R/upkeep.R
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ upkeep_checklist <- function(last_upkeep = last_upkeep_year()) {
todo("`rdev::use_gitattributes()`"),
todo("`rdev::use_analysis_package(use_quarto = TRUE)`", ptype == "quarto"),
todo("`rdev::use_codecov()`", length(fs::dir_ls("R")) > 1),
todo("`rdev::use_rdev_pkgdown()", ptype == "rdev"),
""
)
}
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,20 +234,20 @@ 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.2.tar.gz’
#> * building ‘rdev_1.15.3.tar.gz’
#>
#> ── R CMD check ─────────────────────────────────────────────────────────────────
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/Rtmp7I3C6H/filefe8b30a6a279/rdev.Rcheck’
#> * using R version 4.5.1 (2025-06-13)
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/RtmpoA3Xo3/filecbbd77c339b2/rdev.Rcheck’
#> * using R version 4.5.2 (2025-10-31)
#> * using platform: aarch64-apple-darwin20
#> * R was compiled by
#> Apple clang version 16.0.0 (clang-1600.0.26.6)
#> GNU Fortran (GCC) 14.2.0
#> * running under: macOS Sequoia 15.7.1
#> * running under: macOS Sequoia 15.7.2
#> * using session charset: UTF-8
#> * using option ‘--no-manual’
#> * checking for file ‘rdev/DESCRIPTION’ ... OK
#> * this is package ‘rdev’ version ‘1.15.2
#> * this is package ‘rdev’ version ‘1.15.3
#> * package encoding: UTF-8
#> * checking package namespace information ... OK
#> * checking package dependencies ... OK
Expand Down Expand Up @@ -302,8 +302,8 @@ ci()
#> * DONE
#>
#> Status: OK
#> ── R CMD check results ──────────────────────────────────────── rdev 1.15.2 ────
#> Duration: 24.6s
#> ── R CMD check results ──────────────────────────────────────── rdev 1.15.3 ────
#> Duration: 25.5s
#>
#> 0 errors ✔ | 0 warnings ✔ | 0 notes ✔
```
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
- [x] Replace `GITHUB_PAT` in `.Renviron` with [gitcreds](https://usethis.r-lib.org/articles/git-credentials.html)
- [x] Review use of [usethis functions](https://usethis.r-lib.org/reference/index.html), including [pull request helpers](https://usethis.r-lib.org/articles/pr-functions.html)
- [ ] Update tests with new testthat features (`testthat::auto_test_package()`, `testthat::describe()`, Reporters, `testthat::local_mocked_bindings()`)
- [ ] Replace `dev = TRUE` logic if <https://github.com/rstudio/renv/issues/1695> is accepted
- [ ] Replace `dev = TRUE` logic after renv 1.1.6+ is released; see renv [#1695](https://github.com/rstudio/renv/issues/1695), [#2190](https://github.com/rstudio/renv/pull/2190)
- [ ] Update errors and messages after reading Advanced R [Conditions](https://adv-r.hadley.nz/conditions.html) and re-reading the Tidyverse [Style Guide](https://style.tidyverse.org/index.html)
- [ ] Reduce the number of Imports, per R CMD check:

Expand Down
1 change: 1 addition & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ url: https://jabenninghoff.github.io/rdev/
template:
bootstrap: 5
light-switch: true
llm-docs: false

reference:
- title: Release Automation
Expand Down
4 changes: 2 additions & 2 deletions docs/404.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/LICENSE-text.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/LICENSE.html

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

8 changes: 4 additions & 4 deletions docs/TODO.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/articles/analysis-package-layout.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/articles/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/articles/rdev.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/articles/style-guide.html

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

8 changes: 4 additions & 4 deletions docs/authors.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/deps/bootstrap-5.3.1/bootstrap.min.css

Large diffs are not rendered by default.

Loading
Loading