Skip to content

Commit

Permalink
Merge pull request #187 from DavisVaughan/rc-0.2.2
Browse files Browse the repository at this point in the history
RC 0.2.2
  • Loading branch information
DavisVaughan authored Jan 29, 2021
2 parents 1c5a22c + f5ad190 commit 6bf15f1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ jobs:
install.packages("pkgdown")
shell: Rscript {0}

# progressr requires R 3.5, so we can't put it in Suggests,
# but need it for the article about progress bars
- name: Install article dependencies
run: |
install.packages("progressr")
shell: Rscript {0}

- name: Install package
run: R CMD INSTALL .

Expand Down
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: furrr
Title: Apply Mapping Functions in Parallel using Futures
Version: 0.2.1.9000
Version: 0.2.2
Authors@R:
c(person(given = "Davis",
family = "Vaughan",
Expand Down Expand Up @@ -36,7 +36,6 @@ Suggests:
knitr,
listenv (>= 0.6.0),
magrittr,
progressr,
rmarkdown,
testthat (>= 3.0.0),
withr,
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# furrr (development version)
# furrr 0.2.2

* Updated a test to fix an issue with upcoming lifecycle 1.0.0.

Expand Down
4 changes: 4 additions & 0 deletions R/furrr-options.R
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ validate_globals <- function(x) {
}

validate_packages <- function(x) {
if (is.null(x)) {
return(x)
}

x <- vctrs::vec_cast(x, character(), x_arg = "packages")

if (any(is.na(x))) {
Expand Down
4 changes: 4 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
## R CMD check results

0 errors | 0 warnings | 0 notes

## 0.2.2 Submission

Minor release to update a test in preparation for a lifecycle 1.0.0 change.

## 0.2.1 Submission

Expand Down

0 comments on commit 6bf15f1

Please sign in to comment.