Skip to content

Commit

Permalink
Export methods and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Jan 7, 2022
1 parent 3839ee2 commit ab9a88e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -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, <doi:10.21105/joss.00550>).
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
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 2 additions & 0 deletions R/tar_make_interactive.R
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit ab9a88e

Please sign in to comment.