Skip to content

Commit b7e133d

Browse files
CLEANUP: Removed defunct progress()
1 parent 1b0c73f commit b7e133d

File tree

5 files changed

+7
-63
lines changed

5 files changed

+7
-63
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.17.0-9005
2+
Version: 0.17.0-9006
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(), 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.
55
Authors@R: c(person("Henrik", "Bengtsson",

NAMESPACE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export(handler_void)
2626
export(handler_winprogressbar)
2727
export(handlers)
2828
export(make_progression_handler)
29-
export(progress)
3029
export(progress_aggregator)
3130
export(progress_progressr)
3231
export(progression)

NEWS.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@
2121
ignored. Also, warnings on "with_progress() received a progression
2222
'initiate' request" were produced with **progressr** 0.17.0
2323
(2025-10-15).
24-
24+
25+
## Deprecated and Defunct
26+
27+
* Removed `progress()`, which has been defunct since version 0.10.0
28+
(2021-12-18).
29+
2530

2631
# Version 0.17.0 [2025-10-15]
2732

R/progress.R

Lines changed: 0 additions & 36 deletions
This file was deleted.

man/progress.Rd

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)