From 7ebd2af415b0e446be17635d632fae3ccaad7294 Mon Sep 17 00:00:00 2001 From: StatnMap Date: Thu, 17 Aug 2023 17:46:09 +0200 Subject: [PATCH] chore: start new dev version --- DESCRIPTION | 2 +- NEWS.md | 2 ++ dev/cran-comments-history.md | 25 +++++++++++++++++++++++++ dev/dev_history.R | 3 +++ 4 files changed, 31 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 23bdd399..8446e523 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fusen Title: Build a Package from Rmarkdown Files -Version: 0.5.2 +Version: 0.5.2.9000 Authors@R: c( person("Sebastien", "Rochette", , "sebastien@thinkr.fr", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-1565-9313")), diff --git a/NEWS.md b/NEWS.md index 3a171fd9..451f881d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# fusen (development version) + # fusen 0.5.2 ## New features diff --git a/dev/cran-comments-history.md b/dev/cran-comments-history.md index 33dbc564..9f906612 100644 --- a/dev/cran-comments-history.md +++ b/dev/cran-comments-history.md @@ -1,3 +1,28 @@ +# v0.5.2 +## R CMD check results + +0 errors | 0 warnings | 0 note + +* This is a new release. + +### Comment about `packageVersion()` + +Thus, With c84610 R-devel now *warns* about such inputs, which will +typically not show in the check results (but immediately giving errors +would cause too much disruption). Some of these warnings can be found +by code analyis. I list these uses below, can you please fix as +necessary? E.g., for the first issue shown, + + packageVersion("ggplot2") >= 3.3 + +should be changed to + + packageVersion("ggplot2") >= "3.3" + +etc. + +=> Fixed where needed. Verified with r-devel on GitHub Actions and winbuilder-devel + # v0.5.1 ## R CMD check results diff --git a/dev/dev_history.R b/dev/dev_history.R index 610c9bcb..ea355869 100644 --- a/dev/dev_history.R +++ b/dev/dev_history.R @@ -281,3 +281,6 @@ usethis::use_version(which = c("patch", "minor", "major", "dev")[1]) # Verify you're ready for release, and release devtools::release() + +# Back to dev +usethis::use_version(which = c("patch", "minor", "major", "dev")[4])