We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ChangeSeverity
1 parent d3d3eb9 commit 06f6cd9Copy full SHA for 06f6cd9
src/bootstrap/src/lib.rs
@@ -81,7 +81,10 @@ pub struct ChangeInfo {
81
82
#[derive(Clone, Debug)]
83
pub enum ChangeSeverity {
84
+ /// Used when build configurations continue working as before.
85
Info,
86
+ /// Used when the default value of an option changes, or support for an option is removed entirely,
87
+ /// potentially requiring developers to update their build configurations.
88
Warning,
89
}
90
@@ -96,7 +99,6 @@ impl ToString for ChangeSeverity {
96
99
97
100
/// Keeps track of major changes made to the bootstrap configuration.
98
101
///
-///
102
/// If you make any major changes (such as adding new values or changing default values),
103
/// please ensure adding `ChangeInfo` to the end(because the list must be sorted by the merge date)
104
/// of this list.
0 commit comments