diff --git a/DESCRIPTION b/DESCRIPTION index 13fceefa0..3fff74ffd 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -10,7 +10,7 @@ Description: As a pipeline toolkit for Statistics and data science in R, the underlying code and data. The methodology in this package borrows from GNU 'Make' (2015, ISBN:978-9881443519) and 'drake' (2018, ). -Version: 0.9.0.9001 +Version: 0.10.0 License: MIT + file LICENSE URL: https://docs.ropensci.org/targets/, https://github.com/ropensci/targets BugReports: https://github.com/ropensci/targets/issues diff --git a/NAMESPACE b/NAMESPACE index 1b1c00f70..e13a87049 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -179,6 +179,8 @@ S3method(store_write_path,tar_store_custom) S3method(store_write_path,tar_store_file) S3method(store_write_path,tar_torch) S3method(store_write_path,tar_url) +S3method(tar_make_interactive_load_target,tar_bud) +S3method(tar_make_interactive_load_target,tar_target) S3method(target_bootstrap,tar_builder) S3method(target_bootstrap,tar_pattern) S3method(target_bootstrap,tar_stem) diff --git a/NEWS.md b/NEWS.md index 0d6b14457..103ce5b6b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,8 +1,9 @@ -# targets 0.9.1.9001 +# targets 0.10.0 ## Bug fixes * Add class `"tar_nonexportable"` to `format = "aws_keras"` and `format = "aws_torch"` stores. +* Export S3 methods of generic `tar_make_interactive_load_target()`. ## New features diff --git a/R/tar_make_interactive.R b/R/tar_make_interactive.R index 6a9c3a6a1..692cf752d 100644 --- a/R/tar_make_interactive.R +++ b/R/tar_make_interactive.R @@ -44,6 +44,7 @@ tar_make_interactive_load_target <- function(target, name, pipeline) { UseMethod("tar_make_interactive_load_target") } +#' @export tar_make_interactive_load_target.tar_target <- function( target, name, @@ -54,6 +55,7 @@ tar_make_interactive_load_target.tar_target <- function( assign(x = name, value = object, envir = tar_option_get("envir")) } +#' @export tar_make_interactive_load_target.tar_bud <- function( target, name,