diff --git a/DESCRIPTION b/DESCRIPTION index b82e883..5cac1ae 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: pacs Title: Supplementary Tools for R Packages Developers -Version: 0.6.0 +Version: 0.6.0.9000 Authors@R: person(given = "Maciej", family = "Nasinski", diff --git a/NEWS.md b/NEWS.md index dbac2f9..45cb7b7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# pacs 0.6.0.9000 + +* improve the tinyverse vignette. + # pacs 0.6.0 * fix `checked_packages` as there is a new DOM structure. diff --git a/vignettes/tinyverse.Rmd b/vignettes/tinyverse.Rmd index aad2703..0cbf7e2 100644 --- a/vignettes/tinyverse.Rmd +++ b/vignettes/tinyverse.Rmd @@ -165,7 +165,7 @@ For me, `tinytest` is an interesting alternative compared to `testthat` neverthe I do not care how many dependencies have the `testthat` package as it is located in `Suggests` field of DESCRIPTION file. `testthat` will not be delayed loaded with `requireNampese` too. This means that the higher number of dependencies from the `testthat` package is only my problem (developer one, not the end user) when e.g. I am checking a package (e.g. with `R CMD check`). How many additional packages must be downloaded by **a developer** (e.g. for `R CMD check`) when comparing `tinytest` and `testthat`? In the case of `tinytest` it is zero packages and for `testthat` 80 packages now. Please use `pacs::pac_deps_dev("tinytest")` and `pacs::pac_deps_dev("testthat")` to confirm that. -When `tinytest` and `testthat` are in the Suggests field of another package (e.g. `pacs`), then the end user needs additional 0 packages for `tinytest` and 30 packages for `testthat` (`pacs::pac_deps_user("testthat")`). Remember that these dependencies might overlap with other packages and their dependencies. +When `tinytest` and `testthat` are in the Imports field of another package, then the end user needs additional 0 packages for `tinytest` and 30 packages for `testthat` (`pacs::pac_deps_user("testthat")`). Remember that these dependencies might overlap with other packages and their dependencies. Dependencies from the end user perspective: