Rename misused "deprecation" to removal (#10000)

# Description
In the past we named the process of completely removing a command and
providing a basic error message pointing to the new alternative
"deprecation".

But this doesn't match the expectation of most users that have seen
deprecation _warnings_ that alert to either impending removal or
discouraged use after a stability promise.

# User-Facing Changes
Command category changed from `deprecated` to `removed`
This commit is contained in:
Stefan Holderbach
2023-08-14 21:17:31 +02:00
committed by GitHub
parent 0a5f41abc2
commit 435348aa61
12 changed files with 33 additions and 51 deletions

View File

@ -3,7 +3,6 @@ mod conversions;
mod date;
mod debug;
mod default_context;
mod deprecated;
mod env;
mod example_test;
mod experimental;
@ -21,6 +20,7 @@ mod path;
mod platform;
mod progress_bar;
mod random;
mod removed;
mod shells;
mod sort_utils;
mod strings;
@ -32,7 +32,6 @@ pub use conversions::*;
pub use date::*;
pub use debug::*;
pub use default_context::*;
pub use deprecated::*;
pub use env::*;
#[cfg(test)]
pub use example_test::test_examples;
@ -50,6 +49,7 @@ pub use network::*;
pub use path::*;
pub use platform::*;
pub use random::*;
pub use removed::*;
pub use shells::*;
pub use sort_utils::*;
pub use strings::*;