From da4527b8a9b7d6cbed85f187463ab9a543cf0bd4 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Sat, 7 Dec 2024 07:45:27 -0500 Subject: [PATCH] Increase proposal to 2 releases --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c13e92b3a70..ca2ff38e149 100644 --- a/README.md +++ b/README.md @@ -89,16 +89,16 @@ Rust programs to still compile, but will generate compiler warnings. This gives downstream crates time to migrate to non deprecated APIs prior to their removal. All deprecated APIs are marked using the `#[deprecated]` attribute with both the -first version they were deprecated in, as well as what new API to use instead. +first version they were deprecated in, and what new API to use instead. ```rust #[deprecated(since = "51.0.0", note = "Use `date_part` instead")] ``` -Deprecated APIs will be kept for at least one major release after they were +Deprecated APIs will be kept for at least two major releases after they were deprecated. For example, an API deprecated in `51.3.0` will not be removed until -at least `53.0.0`. Given the planned release schedule, this is typically between -3 and 6 months. +at least `54.0.0`. Given the planned release schedule, this is typically between +6 and 9 months. ## Related Projects