Skip to content

Commit

Permalink
progressr 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed Jan 10, 2023
1 parent d7f3f48 commit 21793d2
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: progressr
Version: 0.12.0-9023
Version: 0.13.0
Title: An Inclusive, Unifying API for Progress Updates
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(), cli::cli_progress_bar(), in a graphical user interface using utils::winProgressBar(), tcltk::tkProgressBar() or shiny::withProgress(), via the speakers using beepr::beep(), 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 API:s 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.
Authors@R: c(
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 0.13.0 [2023-01-09]

## Significant Changes

Expand Down
46 changes: 23 additions & 23 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# CRAN submission progressr 0.12.0
# CRAN submission progressr 0.13.0

on 2022-12-12
on 2023-01-09

I've verified this submission has no negative impact on any of the 68 reverse package dependencies available on CRAN (n = 65) and Bioconductor (n = 3).
I've verified this submission has no negative impact on any of the 70 reverse package dependencies available on CRAN (n = 67) and Bioconductor (n = 3).

Thank you

Expand Down Expand Up @@ -41,48 +41,48 @@ print(res)
gives

```
── progressr 0.11.0-9022: OK
── progressr 0.13.0: OK
Build ID: progressr_0.11.0-9022.tar.gz-4495cb1f89ba4215a7482a9bf192d745
Build ID: progressr_0.13.0.tar.gz-d11f185b89e4479482ebfa691044c756
Platform: Debian Linux, R-devel, clang, ISO-8859-15 locale
Submitted: 1h 2m 16.7s ago
Build time: 1h 2m 1.3s
Submitted: 53m 44.4s ago
Build time: 53m 37.5s
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
── progressr 0.11.0-9022: OK
── progressr 0.13.0: OK
Build ID: progressr_0.11.0-9022.tar.gz-b6893af73912457687fe361c284573fd
Build ID: progressr_0.13.0.tar.gz-1edbec52c27c443c9ce9bd4154e92b8c
Platform: Debian Linux, R-patched, GCC
Submitted: 1h 2m 16.8s ago
Build time: 1h 44.8s
Submitted: 53m 44.4s ago
Build time: 53m 10.2s
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
── progressr 0.11.0-9022: OK
── progressr 0.13.0: OK
Build ID: progressr_0.11.0-9022.tar.gz-ca6f0eafe67b4e3ebace034e71bf9b83
Build ID: progressr_0.13.0.tar.gz-42ae3c8a45a84680a0ea83bfe24bf4e5
Platform: Fedora Linux, R-devel, GCC
Submitted: 1h 2m 16.8s ago
Build time: 55m 3s
Submitted: 53m 44.4s ago
Build time: 46m 26.1s
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
── progressr 0.11.0-9022: OK
── progressr 0.13.0: OK
Build ID: progressr_0.11.0-9022.tar.gz-d5cd6ade429a4f9ba9757669a4cb6ddd
Build ID: progressr_0.13.0.tar.gz-eaee37da30424bb5a71d134f77adfb98
Platform: macOS 10.13.6 High Sierra, R-release, CRAN's setup
Submitted: 1h 2m 16.8s ago
Build time: 4m 38.1s
Submitted: 53m 44.4s ago
Build time: 4m 43.8s
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
── progressr 0.11.0-9022: OK
── progressr 0.13.0: OK
Build ID: progressr_0.11.0-9022.tar.gz-6d42bbd8887a4c16936b7c88d8b07b0b
Build ID: progressr_0.13.0.tar.gz-95c2a5ae023b4c6793d4e986528cb55d
Platform: Windows Server 2022, R-release, 32/64 bit
Submitted: 1h 2m 16.8s ago
Build time: 5m 21.2s
Submitted: 53m 44.4s ago
Build time: 4m 19.7s
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
```

0 comments on commit 21793d2

Please sign in to comment.