From f1bd98d3ff8a0e619318b2e23ef4012b0a3a9e56 Mon Sep 17 00:00:00 2001 From: Indrajeet Patil Date: Wed, 22 Jan 2025 22:08:26 +0100 Subject: [PATCH] RC CRAN: 0.10.0 (#381) * CRAN submission * remove remaining twitter handle * add missing dep * another missing dep --- DESCRIPTION | 9 +++++---- NEWS.md | 2 +- cran-comments.md | 2 +- inst/WORDLIST | 1 + man/see-package.Rd | 2 +- tests/testthat/test-plot.estimate_contrasts.R | 2 ++ 6 files changed, 11 insertions(+), 7 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index f1d8dc211..8931e8c4d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: see Title: Model Visualisation Toolbox for 'easystats' and 'ggplot2' -Version: 0.9.0.15 +Version: 0.10.0 Authors@R: c(person(given = "Daniel", family = "Lüdecke", @@ -41,8 +41,7 @@ Authors@R: person(given = "Matthew", family = "Smith", role = "rev", - email = "M.Smith3@napier.ac.uk", - comment = c(Twitter = "@SmithMatt90")), + email = "M.Smith3@napier.ac.uk"), person(given = "Jakob", family = "Bossek", role = "rev", @@ -62,7 +61,7 @@ Depends: R (>= 4.0), stats Imports: - bayestestR (>= 0.15.0), + bayestestR (>= 0.15.1), correlation (>= 0.8.6), datawizard (>= 1.0.0), effectsize (>= 1.0.0), @@ -75,6 +74,7 @@ Imports: Suggests: BH, brms, + collapse, curl, DHARMa, emmeans, @@ -92,6 +92,7 @@ Suggests: lavaan, lme4, logspline, + marginaleffects, MASS, mclogit, mclust, diff --git a/NEWS.md b/NEWS.md index ae6b4c50f..325084a70 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# see (development) +# see 0.10.0 ## Changes diff --git a/cran-comments.md b/cran-comments.md index a77c3a513..5962cd880 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -2,7 +2,7 @@ 0 errors | 0 warnings | 0 note -* Maintenance release. +* Fixes failing tests due to updates to easystats packages. ## revdepcheck results diff --git a/inst/WORDLIST b/inst/WORDLIST index fd126488a..5cc62232b 100644 --- a/inst/WORDLIST +++ b/inst/WORDLIST @@ -1,4 +1,5 @@ Acyclic +Anova BFs BayesFactor Biserial diff --git a/man/see-package.Rd b/man/see-package.Rd index e9b77f807..4e2cea88a 100644 --- a/man/see-package.Rd +++ b/man/see-package.Rd @@ -39,7 +39,7 @@ Authors: Other contributors: \itemize{ \item Jeffrey R. Stevens \email{jeffrey.r.stevens@gmail.com} (\href{https://orcid.org/0000-0003-2375-1360}{ORCID}) [contributor] - \item Matthew Smith \email{M.Smith3@napier.ac.uk} (@SmithMatt90) [reviewer] + \item Matthew Smith \email{M.Smith3@napier.ac.uk} [reviewer] \item Jakob Bossek \email{bossek@wi.uni-muenster.de} [reviewer] } diff --git a/tests/testthat/test-plot.estimate_contrasts.R b/tests/testthat/test-plot.estimate_contrasts.R index b9e88e856..8a9e4eaa6 100644 --- a/tests/testthat/test-plot.estimate_contrasts.R +++ b/tests/testthat/test-plot.estimate_contrasts.R @@ -1,6 +1,8 @@ test_that("`plot.see_estimate_contrasts()` works", { skip_if_not_installed("rstanarm") skip_if_not_installed("emmeans") + skip_if_not_installed("marginaleffects") + skip_if_not_installed("collapse") model <- stan_glm(Sepal.Width ~ Species, data = iris, refresh = 0) contrasts <- modelbased::estimate_contrasts(model, contrast = "Species")