-
Notifications
You must be signed in to change notification settings - Fork 142
Closed
Labels
blocking-next-releaseThis issue should be resolved before we release on crates.ioThis issue should be resolved before we release on crates.io
Description
We need to rename FromZeroes to FromZeros. We attempted this in #430, by doing the rename, and providing an alias:
/// Deprecated: prefer [`FromZeros`] instead.
#[doc(hidden)]
pub use FromZeros as FromZeroes;The intention here was that this would gently nudge users towards FromZeros, and then in 0.8, we would add a deprecated notice:
#[deprecated(since = "0.8.0", note = "FromZeroes has been renamed to FromZeros")]However, we found from our UI tests that Rust recommends using "FromZeroes" in its suggestions — even when it's both doc(hidden) and deprecated. This would have the opposite of the intended effect.
We need to investigate whether this is a fixable Rust bug, and if there is any action we can take before 0.8.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
blocking-next-releaseThis issue should be resolved before we release on crates.ioThis issue should be resolved before we release on crates.io