Add ChangeInfo record

This commit is contained in:
Jakub Beránek 2023-12-07 12:43:52 +01:00
parent ccbd88dc83
commit f1c5558edc
No known key found for this signature in database
GPG Key ID: 909CD0D26483516B
2 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,7 @@
#
# If `change-id` does not match the version that is currently running,
# `x.py` will prompt you to update it and check the related PR for more details.
change-id = 117813
change-id = 118703
# =============================================================================
# Tweaking how LLVM is compiled

View File

@ -91,4 +91,9 @@ pub fn find_recent_config_change_ids(current_id: usize) -> Vec<ChangeInfo> {
severity: ChangeSeverity::Info,
summary: "The `rust.use-lld` configuration now has different options ('external'/true or 'self-contained'), and its behaviour has changed.",
},
ChangeInfo {
change_id: 118703,
severity: ChangeSeverity::Info,
summary: "Removed rust.run_dsymutil and dist.gpg_password_file config options, as they were unused.",
},
];