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
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rdev
Title: R Development Tools
Version: 1.14.0
Version: 1.14.1
Authors@R:
person("John", "Benninghoff", , "jbenninghoff@mac.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-6230-4742"))
Expand Down Expand Up @@ -62,4 +62,4 @@ Config/testthat/edition: 3
Encoding: UTF-8
Language: en-US
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
RoxygenNote: 7.3.3
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# rdev 1.14.1

* Improved checks for `merge_release()`

* Added new quarto .gitignore exclusions (update `use_analysis_package()`)

* Updated Get Started vignette with current usethis advice on storing GitHub credentials

# rdev 1.14.0

* Added utility function `package_type()`: determine rdev package type
Expand Down
4 changes: 4 additions & 0 deletions R/release.R
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,10 @@ merge_release <- function(pkg = ".", filename = "NEWS.md", host = getOption("rde
checkmate::assert_string(filename, min.chars = 1)
checkmate::assert_string(host, min.chars = 1, null.ok = TRUE)

if (nrow(gert::git_status()) != 0) {
stop("uncommitted changes present", call. = FALSE)
}

rel <- get_release(pkg = pkg, filename = filename)
pr_title <- paste0(rel$package, " ", rel$version)

Expand Down
1 change: 1 addition & 0 deletions R/setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,7 @@ use_analysis_package <- function(use_quarto = TRUE, prompt = FALSE) {
".nojekyll", FALSE, FALSE, TRUE,
".quarto", FALSE, FALSE, TRUE,
"/.quarto/", FALSE, TRUE, FALSE,
"**/*.quarto_ipynb", FALSE, TRUE, FALSE,
"_freeze", FALSE, FALSE, TRUE,
"_quarto.yml", FALSE, FALSE, FALSE
)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,20 +237,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.14.0.tar.gz’
#> * building ‘rdev_1.14.1.tar.gz’
#>
#> ── R CMD check ─────────────────────────────────────────────────────────────────
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/Rtmp1MY5Pa/file502457968b85/rdev.Rcheck’
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/RtmpozUAJG/file2e412cc5f381/rdev.Rcheck’
#> * using R version 4.5.1 (2025-06-13)
#> * 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.6
#> * running under: macOS Sequoia 15.7.1
#> * using session charset: UTF-8
#> * using option ‘--no-manual’
#> * checking for file ‘rdev/DESCRIPTION’ ... OK
#> * this is package ‘rdev’ version ‘1.14.0
#> * this is package ‘rdev’ version ‘1.14.1
#> * package encoding: UTF-8
#> * checking package namespace information ... OK
#> * checking package dependencies ... OK
Expand Down Expand Up @@ -305,8 +305,8 @@ ci()
#> * DONE
#>
#> Status: OK
#> ── R CMD check results ──────────────────────────────────────── rdev 1.14.0 ────
#> Duration: 22.1s
#> ── R CMD check results ──────────────────────────────────────── rdev 1.14.1 ────
#> Duration: 23.4s
#>
#> 0 errors ✔ | 0 warnings ✔ | 0 notes ✔
```
2 changes: 2 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
- [x] ~~Add CSS to R Markdown [Template](https://rstudio.github.io/rstudio-extensions/rmarkdown_templates.html) instead of `assets/extra.css`?~~
- [x] Move `shift-heading-level-by: 1` from `_quarto.yml` to `analysis/_metadata.yml`, so `TODO.md` renders properly
- [x] Remove `preset: bootstrap` workaround when pkgdown 2.0.8+ is released (per <https://github.com/r-lib/pkgdown/issues/2376>)
- [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)
- [ ] Replace `dev = TRUE` logic if <https://github.com/rstudio/renv/issues/1695> is accepted
- [ ] 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
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.

4 changes: 3 additions & 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.

12 changes: 7 additions & 5 deletions 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.

14 changes: 7 additions & 7 deletions docs/index.html

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

8 changes: 7 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.7.0.2
pandoc: 3.8.1
pkgdown: 2.1.3
pkgdown_sha: ~
articles:
analysis-package-layout: analysis-package-layout.html
rdev: rdev.html
style-guide: style-guide.html
last_built: 2025-08-12T23:53Z
last_built: 2025-10-02T20:14Z
urls:
reference: https://jabenninghoff.github.io/rdev/reference
article: https://jabenninghoff.github.io/rdev/articles
Loading