Skip to content

Commit 456349e

Browse files
committed
fix deprecation version to 1.16.0
1 parent 0783033 commit 456349e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bayesplot (development version)
22

3-
* `ppc_ecdf_overlay()`, `ppc_ecdf_overlay_grouped()`, and `ppd_ecdf_overlay()` now always use `geom_step()`. The `discrete` argument is deprecated .
3+
* `ppc_ecdf_overlay()`, `ppc_ecdf_overlay_grouped()`, and `ppd_ecdf_overlay()` now always use `geom_step()`. The `discrete` argument is deprecated.
44
* Replace `apply()` with `storage.mode()` for integer-to-numeric matrix conversion in `validate_predictions()`.
55
* Fixed `is_chain_list()` to correctly reject empty lists instead of silently returning `TRUE`.
66
* Added unit tests for `mcmc_areas_ridges_data()`, `mcmc_parcoord_data()`, and `mcmc_trace_data()`.

R/ppc-distributions.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ ppc_ecdf_overlay <- function(y,
275275

276276
if (is_present(discrete)) {
277277
deprecate_warn(
278-
"1.12.0",
278+
"1.16.0",
279279
"ppc_ecdf_overlay(discrete)",
280280
details = "The ECDF is now always plotted as a step function."
281281
)
@@ -333,7 +333,7 @@ ppc_ecdf_overlay_grouped <- function(y,
333333

334334
if (is_present(discrete)) {
335335
deprecate_warn(
336-
"1.12.0",
336+
"1.16.0",
337337
"ppc_ecdf_overlay_grouped(discrete)",
338338
details = "The ECDF is now always plotted as a step function."
339339
)

R/ppd-distributions.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ ppd_ecdf_overlay <-
9191

9292
if (is_present(discrete)) {
9393
deprecate_warn(
94-
"1.12.0",
94+
"1.16.0",
9595
"ppd_ecdf_overlay(discrete)",
9696
details = "The ECDF is now always plotted as a step function."
9797
)

0 commit comments

Comments
 (0)