Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Nov 24, 2024
1 parent 4638ddc commit 8a6783a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# News

## Development
## 0.24.0

Breaking change:

Expand Down
2 changes: 1 addition & 1 deletion R/get_hypothesis.R
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

Expand Down

0 comments on commit 8a6783a

Please sign in to comment.