File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change 11# ---
22# repo: r-lib/rlang
33# file: standalone-lifecycle.R
4- # last-updated: 2023-02-23
4+ # last-updated: 2024-10-05
55# license: https://unlicense.org
6+ # dependencies: standalone-cli.R
67# imports: rlang (>= 1.0.0)
78# ---
89#
1314#
1415# ## Changelog
1516#
17+ # 2024-09-27
18+ #
19+ # - Depends on `standalone-cli.R` instead of the cli package.
20+ #
21+ # 2024-09-27
22+ #
23+ # - Removed call to `glue::glue()` in `.rlang_lifecycle_verbosity()`
24+ #
1625# 2023-02-23
1726#
1827# - Updated the API and internals to match modern lifecycle tools.
1928#
20- #
2129# 2021-04-19
2230#
2331# - Removed `lifecycle()` function. You can now use the following in
3442#
3543# - Soft-namespaced private objects.
3644#
37- # 2024-09-27
38- #
39- # - Removed call to `glue::glue()` in `.rlang_lifecycle_verbosity()`
40- #
4145# nocov start
4246
4347
@@ -170,7 +174,7 @@ deprecate_warn <- function(msg,
170174}
171175
172176deprecate_stop <- function (msg ) {
173- msg <- cli :: format_error(msg )
177+ msg <- format_error(msg )
174178 .rlang_lifecycle_signal_stage(msg , " deprecated" )
175179
176180 stop(rlang :: cnd(
You can’t perform that action at this time.
0 commit comments