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.16.1
Version: 1.16.2
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.16.2

* Added dplyr 1.2 update check to `upkeep_checklist()`

# rdev 1.16.1

* Added new renv 1.1.6 function `renv::vulns()` to `check_renv()` and `ci()`
Expand Down
13 changes: 9 additions & 4 deletions R/upkeep.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ use_upkeep_issue <- function(last_upkeep = last_upkeep_year()) {
upkeep_checklist <- function(last_upkeep = last_upkeep_year()) { # nolint: cyclocomp_linter.
lic <- get_license()
ptype <- package_type()
uses_ggplot2 <- desc::desc_has_dep("ggplot2")

bullets <- c(
"### New branch",
Expand Down Expand Up @@ -112,7 +111,7 @@ upkeep_checklist <- function(last_upkeep = last_upkeep_year()) { # nolint: cyclo
todo("`rdev::use_rdev_pkgdown()`", ptype == "rdev"),
todo(
"Update for ggplot2 [version 4](https://tidyverse.org/blog/2025/09/ggplot2-4-0-0/)",
uses_ggplot2
desc::desc_has_dep("ggplot2")
),
todo("Switch to chunk option YAML [syntax](https://yihui.org/knitr/options/)"),
"",
Expand All @@ -127,12 +126,18 @@ upkeep_checklist <- function(last_upkeep = last_upkeep_year()) { # nolint: cyclo
""
)
}
if (last_upkeep <= 2026 && !renv::settings$snapshot.dev()) {
snapshot_dev <- renv::settings$snapshot.dev()
uses_dplyr <- desc::desc_has_dep("dplyr")
if (last_upkeep <= 2026 && (!snapshot_dev || uses_dplyr)) {
bullets <- c(
bullets,
"### 2026",
"",
todo("`renv::settings$snapshot.dev(TRUE)`"),
todo("`renv::settings$snapshot.dev(TRUE)`", !snapshot_dev),
todo(
"Update for dplyr [version 1.2](https://tidyverse.org/blog/2026/02/dplyr-1-2-0/)",
uses_dplyr
),
""
)
}
Expand Down
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,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 @@ -241,10 +242,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.16.1.tar.gz’
#> * building ‘rdev_1.16.2.tar.gz’
#>
#> ── R CMD check ─────────────────────────────────────────────────────────────────
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/RtmpXMaZ3x/filee8bb15b4a7a9/rdev.Rcheck’
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/RtmpoTrkpq/file5fed78b2aeed/rdev.Rcheck’
#> * using R version 4.5.2 (2025-10-31)
#> * using platform: aarch64-apple-darwin20
#> * R was compiled by
Expand All @@ -254,7 +255,7 @@ ci()
#> * using session charset: UTF-8
#> * using option ‘--no-manual’
#> * checking for file ‘rdev/DESCRIPTION’ ... OK
#> * this is package ‘rdev’ version ‘1.16.1
#> * this is package ‘rdev’ version ‘1.16.2
#> * package encoding: UTF-8
#> * checking package namespace information ... OK
#> * checking package dependencies ... OK
Expand Down Expand Up @@ -307,9 +308,10 @@ ci()
#> * checking package vignettes ... OK
#> * checking re-building of vignette outputs ... OK
#> * DONE
#>
#> Status: OK
#> ── R CMD check results ──────────────────────────────────────── rdev 1.16.1 ────
#> Duration: 25.8s
#> ── R CMD check results ──────────────────────────────────────── rdev 1.16.2 ────
#> Duration: 31s
#>
#> 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.

7 changes: 6 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.3
pandoc: '3.9'
pkgdown: 2.2.0
pkgdown_sha: ~
articles:
analysis-package-layout: analysis-package-layout.html
rdev: rdev.html
style-guide: style-guide.html
last_built: 2026-01-28T03:28Z
last_built: 2026-02-05T19:30Z
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