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

chore: start new dev version #228

Merged
merged 1 commit into from
Aug 17, 2023
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: fusen
Title: Build a Package from Rmarkdown Files
Version: 0.5.2
Version: 0.5.2.9000
Authors@R: c(
person("Sebastien", "Rochette", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-1565-9313")),
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# fusen (development version)

# fusen 0.5.2

## New features
Expand Down
25 changes: 25 additions & 0 deletions dev/cran-comments-history.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 3 additions & 0 deletions dev/dev_history.R
Original file line number Diff line number Diff line change
Expand Up @@ -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])