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

Release 0.9.1 #475

Merged
merged 3 commits into from
Dec 21, 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
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: datawizard
Title: Easy Data Wrangling and Statistical Transformations
Version: 0.9.0.7
Version: 0.9.1
Authors@R: c(
person("Indrajeet", "Patil", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0003-1995-6531", Twitter = "@patilindrajeets")),
Expand Down Expand Up @@ -40,6 +40,7 @@ Suggests:
bayestestR,
boot,
brms,
curl,
data.table,
dplyr (>= 1.0),
effectsize,
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# datawizard 0.9.0.x (development version)
# datawizard 0.9.1

CHANGES

Expand Down
3 changes: 3 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ We checked 17 reverse dependencies, comparing R CMD check results across CRAN an
* We saw 0 new problems
* We failed to check 0 packages

## Comments

Second submission of 0.9.1 following email exchange on timeout of vignette rendering in one of the pre-tests.
12 changes: 10 additions & 2 deletions vignettes/standardize_data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,18 @@ pkgs <- c(
"see",
"ggplot2",
"parameters",
"lme4"
"lme4",
"curl"
)
pkg_available <- all(vapply(pkgs, requireNamespace, quietly = TRUE, FUN.VALUE = logical(1L)))

if (!all(vapply(pkgs, requireNamespace, quietly = TRUE, FUN.VALUE = logical(1L)))) {
if (pkg_available) {
net_available <- curl::has_internet()
} else {
net_available <- FALSE
}

if (!pkg_available || !net_available) {
knitr::opts_chunk$set(eval = FALSE)
}
```
Expand Down