Skip to content

Commit 931ecde

Browse files
authored
Prepare CRAN release (#818)
1 parent 6b7450e commit 931ecde

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: performance
33
Title: Assessment of Regression Models Performance
4-
Version: 0.13.0.11
4+
Version: 0.14.0
55
Authors@R:
66
c(person(given = "Daniel",
77
family = "Lüdecke",
@@ -165,4 +165,3 @@ Config/Needs/website:
165165
r-lib/pkgdown,
166166
easystats/easystatstemplate
167167
Config/rcmdcheck/ignore-inconsequential-notes: true
168-
Remotes: easystats/insight, easystats/bayestestR, easystats/parameters, easystats/modelbased, easystats/datawizard

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# performance (devel)
1+
# performance 0.14.0
22

33
## Breaking Changes
44

R/performance_reliability.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@
112112
#' performance_reliability(m)
113113
#' performance_dvour(m)
114114
#'
115+
#' \donttest{
115116
#' m <- lme4::lmer(
116117
#' RT ~ Illusion_Difference + (Illusion_Difference | Participant) + (1 | Trial),
117118
#' data = df
@@ -125,6 +126,7 @@
125126
#' )
126127
#' performance_reliability(m)
127128
#' performance_dvour(m)
129+
#' }
128130
#' @export
129131
performance_reliability <- function(x, ...) {
130132
UseMethod("performance_reliability")

inst/WORDLIST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ Merkle
154154
Methoden
155155
Michalos
156156
Moosbrugger
157+
Monette
157158
Mora
158159
Multicollinearity
159160
MuMIn

man/performance_reliability.Rd

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/test-performance_reliability.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test_that("performance_reliability - Bayesian", {
2424
skip_if_not_installed("httr2")
2525
skip_if_not_installed("brms")
2626

27-
m <- insight::download_model("brms_mixed_10")
27+
m <- suppressWarnings(insight::download_model("brms_mixed_10"))
2828
skip_if(is.null(m))
2929
out <- performance_reliability(m)
3030
expect_identical(dim(out), c(2L, 3L))

0 commit comments

Comments
 (0)