diff --git a/DESCRIPTION b/DESCRIPTION index 99ec09faf..f64862fd1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: usethis Title: Automate Package and Project Setup -Version: 2.2.2.9000 +Version: 2.2.3.9000 Authors@R: c( person("Hadley", "Wickham", , "hadley@posit.co", role = "aut", comment = c(ORCID = "0000-0003-4757-117X")), diff --git a/NEWS.md b/NEWS.md index 397a80cbb..9f775a568 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,10 @@ * `edit_rstudio_snippets()` now accepts yaml snippets (@olivroy, #1941) +# usethis 2.2.3 + +* Patch release with changes to `.Rd` files requested by CRAN. + # usethis 2.2.2 * Implicit usage of `numeric_version()` via comparison now always provides diff --git a/README.md b/README.md index 6ad164453..b8c3baf3f 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ create_package(path) #> license #> Encoding: UTF-8 #> Roxygen: list(markdown = TRUE) -#> RoxygenNote: 7.2.3 +#> RoxygenNote: 7.3.1 #> ✔ Writing 'NAMESPACE' #> ✔ Setting active project to '' # only needed since this session isn't interactive diff --git a/cran-comments.md b/cran-comments.md index 53628b394..44b7bf32e 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,23 +1,8 @@ -This is a patch release in response to a 2023-06-28 email from Kurt Hornik about -inputs to numeric_version() and package_version(). +This is a patch release in response to a 2024-01-22 email from Kurt Hornik about +check NOTEs related to Rd \usage sections. I have eliminated the NOTEs. -In this case, the problematic inputs came from implicit usage via `>` in some -tests and these have been changed to comparison to character or removed -entirely. - -I did NOT rerun reverse dependency checks because usethis's last patch release -was less than 2 weeks ago, also in response to a request from Kurt Hornik about -numeric versions. +I did NOT rerun reverse dependency checks for this patch release. ## R CMD check results 0 errors | 0 warnings | 0 notes - -## revdepcheck results - -From the previous patch release on 2023-06-23: - -We checked 181 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package. - - * We saw no new problems - * We failed to check 0 packages diff --git a/vignettes/articles/usethis-setup.Rmd b/vignettes/articles/usethis-setup.Rmd index 0be4e3675..e1256c8b0 100644 --- a/vignettes/articles/usethis-setup.Rmd +++ b/vignettes/articles/usethis-setup.Rmd @@ -170,7 +170,7 @@ Substitute your preferred editor for emacs here. A popular choice is [nano](http As stated above, usethis doesn't actually use the Git you install and has no absolute requirement that you use GitHub or use RStudio. But use of usethis is highly correlated with the desire to do all of these things, in a pleasant way. -If you plan to use GitHub, you need to make sure your local Git can pull from and push to GitHub.com. That is beyond the scope of this article, but see the [Connect to GitHub](https://happygitwithr.com/push-pull-github.html) section in Happy Git. You probably don't want to enter your username and password all the time, so either [cache credentials for HTTPS](https://happygitwithr.com/https-pat) or [set up SSH keys](https://happygitwithr.com/ssh-keys.html). If you are an SSH person, set the `usethis.protocol` option to "ssh" (as of v2.0.0, "https" is the usethis default). +If you plan to use GitHub, you need to make sure your local Git can pull from and push to GitHub.com. That is beyond the scope of this article, but see the [Connect to GitHub](https://happygitwithr.com/push-pull-github.html) section in Happy Git. You probably don't want to enter your username and password all the time, so either [cache credentials for HTTPS](https://happygitwithr.com/https-pat.html) or [set up SSH keys](https://happygitwithr.com/ssh-keys.html). If you are an SSH person, set the `usethis.protocol` option to "ssh" (as of v2.0.0, "https" is the usethis default). If you want to use RStudio to work with Git (and therefore GitHub, see previous paragraph), you need to make sure RStudio can find your Git executable. This usually "just works". The [Connect RStudio to Git and GitHub](https://happygitwithr.com/rstudio-git-github.html) section of Happy Git helps you confirm that all is well. If all is not well, there are also [troubleshooting tips](https://happygitwithr.com/rstudio-see-git.html).