Skip to content

Commit

Permalink
Increase proposal to 2 releases
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Dec 7, 2024
1 parent f724954 commit da4527b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit da4527b

Please sign in to comment.