Skip to content

Commit

Permalink
more checks
Browse files Browse the repository at this point in the history
  • Loading branch information
gluc committed Nov 12, 2023
1 parent 0f7ecfc commit 7746de2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: data.tree
Type: Package
Title: General Purpose Hierarchical Data Structure
Version: 1.0.1
Version: 1.1.0
Date: 2023-11-11
Authors@R: c(
person(
Expand Down Expand Up @@ -84,8 +84,8 @@ Description: Create tree structures from hierarchical data, and traverse the
data.frame and more. Useful for decision trees, machine learning, finance,
conversion from and to JSON, and many other applications.
License: GPL (>= 2)
URL: http://github.com/gluc/data.tree
BugReports: http://github.com/gluc/data.tree/issues
URL: https://github.com/gluc/data.tree
BugReports: https://github.com/gluc/data.tree/issues
Depends:
R (>= 3.5)
RoxygenNote: 7.2.3
Expand Down
2 changes: 1 addition & 1 deletion R/node.R
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ Node <- R6Class("Node",
#' Set this as a list to a root node.
#' The different formatters are h (horizontal), v (vertical), l (L), j (junction), and s (separator).
#' For example, you can set the formatters to \code{list(h = "\u2500" , v = "\u2502", l = "\u2514", j = "\u251C", s = " ")}
#' to get a similar behaviour as in \code{fs::dir_tree()}.
#' to get a similar behavior as in \code{fs::dir_tree()}.
#' The defaults are: \code{list(h = "--" , v = "\u00A6", l = "\u00B0", j = "\u00A6", s = " ")}
printFormatters = function(value) {
if (missing(value)) {
Expand Down
Binary file modified data/acme.rda
Binary file not shown.
2 changes: 1 addition & 1 deletion man/Node.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions publish-cheat-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Before a release, do the following:
11. Run devtools::check_rhub()
12. Run rhub::check_for_cran()
-> if any of these fail, go back to 6.!
12. check reverse dependencies by running revdepcheck::revdep_check(, num_workers = 2, timeout = as.difftime(60, units="mins")) (from github if not yet published to CRAN devtools::install_github("r-lib/revdepcheck")
13. update cran-comments.md
14. merge into master and push
15. create release on github in master, tag it as pre-release
16. submit it to cran by calling devtools::release()
17. once accepted by CRAN, remove the pre-release flag on github
13. check reverse dependencies by running revdepcheck::revdep_check(, num_workers = 2, timeout = as.difftime(60, units="mins")) (from github if not yet published to CRAN devtools::install_github("r-lib/revdepcheck")
14. update cran-comments.md
15. merge into master and push
16. create release on github in master, tag it as pre-release
17. submit it to cran by calling devtools::release()
18. once accepted by CRAN, remove the pre-release flag on github

0 comments on commit 7746de2

Please sign in to comment.