From 8a6783aad910f26ade7a4658bd8fd4c018aa749a Mon Sep 17 00:00:00 2001 From: Vincent Arel-Bundock Date: Sun, 24 Nov 2024 16:01:18 -0500 Subject: [PATCH] bump --- DESCRIPTION | 2 +- NEWS.md | 2 +- R/get_hypothesis.R | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2bd2da770..c2dd89e11 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: marginaleffects Title: Predictions, Comparisons, Slopes, Marginal Means, and Hypothesis Tests -Version: 0.23.0.7 +Version: 0.24.0 Authors@R: c(person(given = "Vincent", family = "Arel-Bundock", diff --git a/NEWS.md b/NEWS.md index cbdc6d786..30188a955 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ # News -## Development +## 0.24.0 Breaking change: diff --git a/R/get_hypothesis.R b/R/get_hypothesis.R index 11f5f3abc..f71338d83 100644 --- a/R/get_hypothesis.R +++ b/R/get_hypothesis.R @@ -334,7 +334,7 @@ avg_predictions(mod, by = 'carb', hypothesis = 'b1 - b2 = 0') Disable this warning with: `options(marginaleffects_safe = FALSE)` " - if (isFALSE(getOption("marginaleffects_safe", default = TRUE))) { + if (isTRUE(getOption("marginaleffects_safe", default = TRUE))) { warn_once(msg, "hypothesis_positional_indices_are_dangerous") }