Skip to content

Commit e3c62bc

Browse files
progressr 0.6.0
1 parent c538ded commit e3c62bc

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: progressr
2-
Version: 0.5.0-9000
2+
Version: 0.6.0
33
Title: A Inclusive, Unifying API for Progress Updates
44
Description: A minimal, unifying API for scripts and packages to report progress updates from anywhere including when using parallel processing. The package is designed such that the developer can to focus on what progress should be reported on without having to worry about how to present it. The end user has full control of how, where, and when to render these progress updates, e.g. in the terminal using utils::txtProgressBar() or progress::progress_bar(), in a graphical user interface using utils::winProgressBar(), tcltk::tkProgressBar() or shiny::withProgress(), via the speakers using beep::beepr(), or on a file system via the size of a file. Anyone can add additional, customized, progression handlers. The 'progressr' package uses R's condition framework for signaling progress updated. Because of this, progress can be reported from almost anywhere in R, e.g. from classical for and while loops, from map-reduce APIs like the lapply() family of functions, 'purrr', 'plyr', and 'foreach'. It will also work with parallel processing via the 'future' framework, e.g. future.apply::future_lapply(), furrr::future_map(), and 'foreach' with 'doFuture'. The package is compatible with Shiny applications.
55
Authors@R: c(

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: progressr
22
==================
33

4-
Version: 0.5.0-9000 [2020-05-12]
4+
Version: 0.6.0 [2020-05-18]
55

66
SIGNIFICANT CHANGES:
77

cran-comments.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# CRAN submission progressr 0.5.0
1+
# CRAN submission progressr 0.6.0
22

3-
on 2020-04-16
3+
on 2020-05-18
44

5-
I've verified that this submission does not cause issues for the 5 reverse package dependency available on CRAN and Bioconductor.
5+
I've verified that this submission does not cause issues for the 6 reverse package dependency available on CRAN.
66

77
Thanks in advance
88

@@ -15,13 +15,10 @@ The package has been verified using `R CMD check --as-cran` on:
1515

1616
| R version | GitHub Actions | Travis CI | AppVeyor CI | Rhub | Win-builder | Other |
1717
| ------------------ | -------------- | --------- | ----------- | --------- | ----------- | ------ |
18-
| 3.2.5 | L | | | | | |
19-
| 3.3.3 | L | | | | | |
2018
| 3.4.4 | L | | | | | |
21-
| 3.5.3 | L, M, W | L, M | | | | |
22-
| 3.6.{1,2,3} | L, M, W | L, M | W | L | W | |
23-
| 4.0.0-devel | | | | W | | |
24-
| 4.0.0-{alpha,beta} | | | | | W | L |
25-
| devel | M W | L | W (32 & 64) | L | | |
19+
| 3.5.3 | L, M, W | | | | | |
20+
| 3.6.3 | L, M, W | L, M | W | L | | |
21+
| 4.0.0 | L, M, W | L, M | W | S (32) | W | |
22+
| devel | M W | L | W (32 & 64) | L, W | W | |
2623

2724
*Legend: OS: L = Linux, S = Solaris, M = macOS, W = Windows. Architecture: 32 = 32-bit, 64 = 64-bit*

0 commit comments

Comments
 (0)