Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rdev 1.11.2 #209

Merged
merged 6 commits into from
Aug 27, 2024
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.11.1
Version: 1.11.2
Authors@R:
person("John", "Benninghoff", , "[email protected]", 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.11.2

* Minor updates

# rdev 1.11.1

* Enabled pkgdown ["light switch"](https://pkgdown.r-lib.org/articles/customise.html#light-switch) by default for packages using `use_rdev_pkgdown()`
Expand Down
1 change: 1 addition & 0 deletions R/setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ use_codecov <- function(prompt = FALSE) {
renv::install("covr")
if (getOption("rdev.codecov", default = TRUE)) {
usethis::use_coverage(type = "codecov")
spelling::update_wordlist(confirm = prompt) # use_coverage creates a "Codecov" badge
sort_rbuildignore()
if (getOption("rdev.github.actions", default = TRUE)) {
usethis::use_github_action(
Expand Down
25 changes: 15 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,18 @@ ci()
#> 3 Suggests DT *
#>
#> url_check()
#> # A tibble: 1 × 9
#> URL From Status Message New CRAN Spaces R root
#> <chr> <nam> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 https://code.visualstudio… <chr> 500 Intern… "" "" "" "" /Use…
#> html_url_check()
#> # A tibble: 2 × 9
#> # A tibble: 4 × 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://code.visualstudio… <chr> 500 Intern… "" "" "" "" /Use…
#> 4 https://github.blog/2009-… <chr> 200 OK "htt… "" "" "" /Use…
#>
#> Setting env vars: NOT_CRAN="true", CI="true"
#> rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")
Expand All @@ -229,21 +235,20 @@ ci()
#> * creating vignettes ... OK
#> * checking for LF line-endings in source and make files and shell scripts
#> * checking for empty or unneeded directories
#> Removed empty directory ‘rdev/tests/testthat/_snaps’
#> * building ‘rdev_1.11.1.tar.gz’
#> * building ‘rdev_1.11.2.tar.gz’
#>
#> ── R CMD check ─────────────────────────────────────────────────────────────────
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/Rtmpba8T7N/file1450c797d54e4/rdev.Rcheck’
#> * using log directory ‘/private/var/folders/vn/cw5f9gws42v9m8mdsds_zbl00000gp/T/RtmpCOd41c/file724b5a7ec10b/rdev.Rcheck’
#> * using R version 4.4.1 (2024-06-14)
#> * using platform: aarch64-apple-darwin20
#> * R was compiled by
#> Apple clang version 14.0.0 (clang-1400.0.29.202)
#> GNU Fortran (GCC) 12.2.0
#> * running under: macOS Ventura 13.6.7
#> * running under: macOS Sonoma 14.6.1
#> * using session charset: UTF-8
#> * using option ‘--no-manual’
#> * checking for file ‘rdev/DESCRIPTION’ ... OK
#> * this is package ‘rdev’ version ‘1.11.1
#> * this is package ‘rdev’ version ‘1.11.2
#> * package encoding: UTF-8
#> * checking package namespace information ... OK
#> * checking package dependencies ... OK
Expand Down Expand Up @@ -298,8 +303,8 @@ ci()
#> * DONE
#>
#> Status: OK
#> ── R CMD check results ──────────────────────────────────────── rdev 1.11.1 ────
#> Duration: 35.2s
#> ── R CMD check results ──────────────────────────────────────── rdev 1.11.2 ────
#> Duration: 30.5s
#>
#> 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.

Loading