diff --git a/DESCRIPTION b/DESCRIPTION index 7f6d4270..38c3896d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: mlr3misc Title: Helper Functions for 'mlr3' -Version: 0.14.0.9000 +Version: 0.15.0 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 9239fd25..fe863878 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,7 @@ -# mlr3misc (development version) +# mlr3misc 0.15.0 * Feat: Added `strip_screfs` S3 generic, which removes source references from objects +* The RNG state is now copied to the callr session when using `encapsulate()`. # mlr3misc 0.14.0 diff --git a/R/strip_srcrefs.R b/R/strip_srcrefs.R index 3658cffc..6b321a22 100644 --- a/R/strip_srcrefs.R +++ b/R/strip_srcrefs.R @@ -2,7 +2,7 @@ #' #' @description #' Source references can make objects unexpectedly large and are undesireable in many situations. -#' As {renv} installs packages with the `--with-keep.source` option, we sometimes need to remove source references +#' As \CRANpkg{renv} installs packages with the `--with-keep.source` option, we sometimes need to remove source references #' from objects. #' Methods should remove source references from the input, but should otherwise leave the input unchanged. #' diff --git a/man/strip_srcrefs.Rd b/man/strip_srcrefs.Rd index 35b811ec..03f5b01c 100644 --- a/man/strip_srcrefs.Rd +++ b/man/strip_srcrefs.Rd @@ -15,7 +15,7 @@ Additional arguments to the method.} } \description{ Source references can make objects unexpectedly large and are undesireable in many situations. -As {renv} installs packages with the \code{--with-keep.source} option, we sometimes need to remove source references +As \CRANpkg{renv} installs packages with the \code{--with-keep.source} option, we sometimes need to remove source references from objects. Methods should remove source references from the input, but should otherwise leave the input unchanged. }