Skip to content

Commit

Permalink
Prepare CRAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jun 6, 2024
1 parent e75d568 commit 542152d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: performance
Title: Assessment of Regression Models Performance
Version: 0.11.0.9
Version: 0.12.0
Authors@R:
c(person(given = "Daniel",
family = "Lüdecke",
Expand Down Expand Up @@ -154,4 +154,3 @@ Config/Needs/website:
r-lib/pkgdown,
easystats/easystatstemplate
Config/rcmdcheck/ignore-inconsequential-notes: true
Remotes: easystats/insight, easystats/datawizard, easystats/parameters, easystats/bayestestR
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# performance 0.11.1
# performance 0.12.0

## Breaking

Expand Down
4 changes: 3 additions & 1 deletion R/check_predictions.R
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,9 @@ check_predictions.BFBayesFactor <- function(object,
if (isTRUE(is.na(re_formula))) {
yy <- everything_we_need[["y_pred_marginal"]]
} else {
if (!is.null(re_formula)) warning("re_formula can only be NULL or NA", call. = FALSE)
if (!is.null(re_formula)) {
insight::format_warning("`re_formula` can only be `NULL` or `NA`.")
}
yy <- everything_we_need[["y_pred"]]
}

Expand Down

0 comments on commit 542152d

Please sign in to comment.