Skip to content

Commit

Permalink
minor optimization and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Jan 10, 2025
1 parent e381745 commit a8aa492
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Description: Pipeline tools coordinate the pieces of computationally
The methodology in this package
borrows from GNU 'Make' (2015, ISBN:978-9881443519)
and 'drake' (2018, <doi:10.21105/joss.00550>).
Version: 1.9.1.9006
Version: 1.9.1.9007
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: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# targets 1.9.1.9006
# targets 1.9.1.9007

## Summary of performance gains

Expand Down
2 changes: 1 addition & 1 deletion R/class_graph.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ join_edges <- function(lookup, from, to) {
if (is.null(.subset2(lookup, name))) {
lookup[[name]] <- new_from
} else {
lookup[[name]] <- union(new_from, .subset2(lookup, name))
lookup[[name]] <- unique.default(c(new_from, .subset2(lookup, name)))
}
index <- index + 1L
}
Expand Down

0 comments on commit a8aa492

Please sign in to comment.