Add ChangeInfo record · rust-lang/rust@f1c5558 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit f1c5558

File tree

2 files changed

lines changed

2 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@
30 30 #
31 31 # If `change-id` does not match the version that is currently running,
32 32 # `x.py` will prompt you to update it and check the related PR for more details.
33 -change-id = 117813
33 +change-id = 118703
34 34
35 35 # =============================================================================
36 36 # Tweaking how LLVM is compiled
Original file line number Diff line number Diff line change
@@ -91,4 +91,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
91 91 severity: ChangeSeverity::Info,
92 92 summary: "The `rust.use-lld` configuration now has different options ('external'/true or 'self-contained'), and its behaviour has changed.",
93 93 },
94 +ChangeInfo {
95 +change_id: 118703,
96 +severity: ChangeSeverity::Info,
97 +summary: "Removed rust.run_dsymutil and dist.gpg_password_file config options, as they were unused.",
98 +},
94 99 ];