Skip to content

Commit

Permalink
Merge tag '1.38.0' into develop
Browse files Browse the repository at this point in the history
parallelly 1.38.0
  • Loading branch information
HenrikBengtsson committed Jul 27, 2024
2 parents c581ebf + b19a140 commit df2095d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: parallelly
Version: 1.37.1-9019
Version: 1.38.0
Title: Enhancing the 'parallel' Package
Imports:
parallel,
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version (development version)
# Version 1.38.0 [2024-07-27]

## New Features

Expand Down
6 changes: 3 additions & 3 deletions R/makeClusterSequential.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
#' y <- clusterEvalQ(cl, Sys.getpid())
#' str(y)
#'
#' stopifnot(!exists("abc", inherits = FALSE))
#' abc <- 3.14
#' y <- clusterEvalQ(cl, { abc <- 42; abc })
#' str(y)
#' stopifnot(!exists("abc", inherits = FALSE))
#' stopifnot(abc == 3.14)
#'
#' \dontshow{\}}
#'
#' @details
#' Expression and function calls are done in a local environment,
#' Expression and function calls are evaluated in a local environment,
#' inheriting the global environment.
#'
#' @section Requirements:
Expand Down
6 changes: 3 additions & 3 deletions man/makeClusterSequential.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit df2095d

Please sign in to comment.