Skip to content

Commit

Permalink
bump version and news
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyrcoyle committed Apr 29, 2024
1 parent 98dfc74 commit 468c7fe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: delayed
Title: A Framework for Parallelizing Dependent Tasks
Version: 0.4.0
Version: 0.5.0
Authors@R: c(
person("Jeremy", "Coyle", email = "[email protected]",
role = c("aut", "cre", "cph"),
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# delayed 0.5.0

* Changed random seed generation to only generate seed for parallel `future`
plans. Sequential delayed tasks and tasks under `plan('sequential')` should
now match seed behavior with code run outside of delayed. Parallel plans
generate seeds for each delayed subtask prior to running, which should preserve
reproducibility between parallel runs by generate seeds before race conditions.
Note that parallel and sequential runs will produce different RNG, which doesn't
seem to be avoidable.

# delayed 0.3.0

* Initial version for CRAN release.
Expand Down

0 comments on commit 468c7fe

Please sign in to comment.