Skip to content

Commit f1c5558

Browse files
committed
Add ChangeInfo record
1 parent ccbd88d commit f1c5558

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

config.example.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#
3131
# If `change-id` does not match the version that is currently running,
3232
# `x.py` will prompt you to update it and check the related PR for more details.
33-
change-id = 117813
33+
change-id = 118703
3434

3535
# =============================================================================
3636
# Tweaking how LLVM is compiled

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
9191
severity: ChangeSeverity::Info,
9292
summary: "The `rust.use-lld` configuration now has different options ('external'/true or 'self-contained'), and its behaviour has changed.",
9393
},
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+
},
9499
];

0 commit comments

Comments
 (0)