From f11068f6a115d4f557c477d60a9f94313f7d85ff Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Sun, 18 Feb 2024 23:33:01 -0800 Subject: [PATCH 1/6] Fix URL --- vignettes/articles/usethis-setup.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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). From 1ec5968c374f1305fe29adeb21e04b64ccef2d03 Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Sun, 18 Feb 2024 23:35:21 -0800 Subject: [PATCH 2/6] Polish NEWS --- NEWS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index a819c3eb8..54f6bcf8c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,7 @@ # usethis (development version) +* Patch release with changes to `.Rd` files requested by CRAN. + # usethis 2.2.2 * Implicit usage of `numeric_version()` via comparison now always provides From ee0b7ea7f62ef5121184c9ac30040465acef71e6 Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Sun, 18 Feb 2024 23:36:48 -0800 Subject: [PATCH 3/6] devtools::build_readme() --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 217510f4cbc80539c3dbe2e1657acc504b0cb6a5 Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Sun, 18 Feb 2024 23:44:08 -0800 Subject: [PATCH 4/6] Update cran-comments.md --- cran-comments.md | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) 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 From 56466580dc0624115f780320e654d50a4a93cd1d Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Sun, 18 Feb 2024 23:44:33 -0800 Subject: [PATCH 5/6] Increment version number to 2.2.3 --- DESCRIPTION | 2 +- NEWS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 99ec09faf..cbea87148 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 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 54f6bcf8c..c2d6eac61 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# usethis (development version) +# usethis 2.2.3 * Patch release with changes to `.Rd` files requested by CRAN. From ce6ed461b8a286e7f4e89f254dbe63a00cd5ded7 Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Mon, 19 Feb 2024 08:45:21 -0800 Subject: [PATCH 6/6] Increment version number to 2.2.3.9000 --- DESCRIPTION | 2 +- NEWS.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index cbea87148..f64862fd1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: usethis Title: Automate Package and Project Setup -Version: 2.2.3 +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 c2d6eac61..35cba70f6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# usethis (development version) + # usethis 2.2.3 * Patch release with changes to `.Rd` files requested by CRAN.