From 0e927676d59aa815cf96f1d49191e81abb9f6efa Mon Sep 17 00:00:00 2001 From: Marc Becker <33069354+be-marc@users.noreply.github.com> Date: Sat, 29 Jun 2024 15:07:24 +0200 Subject: [PATCH] release: 0.15.1 (#112) * release: 0.15.1 * docs: external links --- DESCRIPTION | 2 +- NEWS.md | 4 +++- R/cross_join.R | 2 +- R/get_private.R | 2 +- man/cross_join.Rd | 2 +- man/get_private-set.Rd | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 530d5c9f..78ceded4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: mlr3misc Title: Helper Functions for 'mlr3' -Version: 0.15.0.9000 +Version: 0.15.1 Authors@R: c( person("Michel", "Lang", , "michellang@gmail.com", role = c("cre", "aut"), comment = c(ORCID = "0000-0001-9754-0393")), diff --git a/NEWS.md b/NEWS.md index fdfeafb8..e28e0e53 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,6 @@ -# mlr3misc (development version) +# mlr3misc 0.15.1 + +* refactor: Update `as_callback()` functions. # mlr3misc 0.15.0 diff --git a/R/cross_join.R b/R/cross_join.R index 01a6b8c5..a1e67854 100644 --- a/R/cross_join.R +++ b/R/cross_join.R @@ -10,7 +10,7 @@ #' See [data.table::CJ()]. #' @param unique (`logical(1)`)\cr #' See [data.table::CJ()]. -#' @return [data.table()]. +#' @return [data.table::data.table()]. #' @export #' @examples #' cross_join(dots = list(sorted = 1:3, b = letters[1:2])) diff --git a/R/get_private.R b/R/get_private.R index dfc42ad2..4bee0010 100644 --- a/R/get_private.R +++ b/R/get_private.R @@ -23,7 +23,7 @@ get_private = function(x) { #' @title Assign Value to Private Field #' #' @description -#' Convenience function to assign a value to a private field of an [R6] instance. +#' Convenience function to assign a value to a private field of an [R6::R6Class] instance. #' #' @param x (any)\cr #' Object whose private field should be modified. diff --git a/man/cross_join.Rd b/man/cross_join.Rd index 97506bd2..f4960e42 100644 --- a/man/cross_join.Rd +++ b/man/cross_join.Rd @@ -17,7 +17,7 @@ See \code{\link[data.table:J]{data.table::CJ()}}.} See \code{\link[data.table:J]{data.table::CJ()}}.} } \value{ -\code{\link[=data.table]{data.table()}}. +\code{\link[data.table:data.table]{data.table::data.table()}}. } \description{ A safe version of \code{\link[data.table:J]{data.table::CJ()}} in case a column is called diff --git a/man/get_private-set.Rd b/man/get_private-set.Rd index 82d30dd8..423c122a 100644 --- a/man/get_private-set.Rd +++ b/man/get_private-set.Rd @@ -20,7 +20,7 @@ Value to assign to the private field.} The R6 instance x, modified in-place. If it is not an R6 instance, NULL is returned. } \description{ -Convenience function to assign a value to a private field of an \link{R6} instance. +Convenience function to assign a value to a private field of an \link[R6:R6Class]{R6::R6Class} instance. } \examples{ library(R6)