Skip to content

Commit 5d93bf4

Browse files
committed
v0.2.1
1 parent 18a5299 commit 5d93bf4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: mlr3inferr
22
Title: Inference on the Generalization Error
3-
Version: 0.2.0.9000
3+
Version: 0.2.1
44
Authors@R: c(
55
person("Sebastian", "Fischer", , "sebf.fischer@gmail.com", role = c("cre", "aut"),
66
comment = c(ORCID = "0000-0002-9609-3197")),

NEWS.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# mlr3inferr (development version)
1+
# 0.2.1
2+
3+
* Compatibility with upcoming `mlr3` release.
4+
25

36
# 0.2.0
47

R/MeasureAbstractCi.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ MeasureAbstractCi = R6Class("MeasureAbstractCi",
6565
assert(
6666
check_class(measure, "Measure"),
6767
check_false(inherits(measure, "MeasureCi")),
68-
if (packageVersion("mlr3") >= "1.3.0") "obs_loss" %in% measure$properties else check_function(measure$obs_loss),
68+
if (utils::packageVersion("mlr3") >= "1.3.0") "obs_loss" %in% measure$properties else check_function(measure$obs_loss),
6969
combine = "and",
7070
.var.name = "Argument measure must be a scalar Measure with a pointwise loss function (has $obs_loss field)"
7171
)

0 commit comments

Comments
 (0)