Skip to content

Commit ede65e9

Browse files
progressr 0.8.0
1 parent e09b7ce commit ede65e9

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,16 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
config:
15-
- { os: windows-latest, r: '3.5'}
16-
- { os: windows-latest, r: '3.6'}
17-
- { os: windows-latest, r: '4.0'}
18-
- { os: windows-latest, r: 'devel'}
19-
- { os: macOS-latest, r: '3.5'}
20-
- { os: macOS-latest, r: '3.6'}
21-
- { os: macOS-latest, r: '4.0'}
22-
- { os: macOS-latest, r: 'devel'}
23-
- { os: ubuntu-16.04, r: '3.5', cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
24-
- { os: ubuntu-16.04, r: '3.6', cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
25-
- { os: ubuntu-16.04, r: '4.0', cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
15+
- {os: windows-latest, r: 'devel' }
16+
- {os: windows-latest, r: 'release'}
17+
- {os: windows-latest, r: 'oldrel' }
18+
- {os: macOS-latest, r: 'devel' }
19+
- {os: macOS-latest, r: 'release'}
20+
- {os: macOS-latest, r: 'oldrel' }
21+
- {os: ubuntu-20.04, r: 'devel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
22+
- {os: ubuntu-20.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
23+
- {os: ubuntu-20.04, r: 'oldrel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
24+
- {os: ubuntu-20.04, r: '3.5', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2625

2726
env:
2827
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true

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.7.0-9001
2+
Version: 0.8.0
33
Title: An 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.7.0-9001 [2021-05-20]
4+
Version: 0.8.0 [2021-06-09]
55

66
SIGNIFICANT CHANGES:
77

cran-comments.md

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

3-
on 2020-12-11
3+
on 2021-06-09
44

5-
I've verified this submission have no negative impact on any of the 22 reverse package dependencies available on CRAN and Bioconductor.
5+
I've verified this submission has no negative impact on any of the 30 reverse package dependencies available on CRAN and Bioconductor.
66

77
Thank you
88

@@ -13,12 +13,12 @@ Thank you
1313

1414
The package has been verified using `R CMD check --as-cran` on:
1515

16-
| R version | GitHub Actions | Travis | AppVeyor | R-hub | win-builder |
17-
| --------- | -------------- | ------ | --------- | -------- | ----------- |
18-
| 3.4.x | L | | | | |
19-
| 3.5.x | L M W | | | | |
20-
| 3.6.x | L M W | L M | | | |
21-
| 4.0.x | L M W | L | W | S | W |
22-
| devel | M W | L | W (32&64) | | W |
16+
| R version | GitHub | Travis | AppVeyor | R-hub | win-builder |
17+
| --------- | ------ | ------ | -------- | ----- | ----------- |
18+
| 3.5.x | L M W | | | | |
19+
| 3.6.x | L M W | | | | |
20+
| 4.0.x | L M W | L | | | |
21+
| 4.1.x | | L | W | L S | W |
22+
| devel | M W | L | W | L | W |
2323

2424
*Legend: OS: L = Linux S = Solaris M = macOS W = Windows*

0 commit comments

Comments
 (0)