Skip to content

Commit 6ee54e1

Browse files
committed
Add ChangeInfo record
1 parent c5bf8ea commit 6ee54e1

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
@@ -86,4 +86,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
8686
severity: ChangeSeverity::Info,
8787
summary: "Use of the `if-available` value for `download-ci-llvm` is deprecated; prefer using the new `if-unchanged` value.",
8888
},
89+
ChangeInfo {
90+
change_id: 118703,
91+
severity: ChangeSeverity::Info,
92+
summary: "Removed rust.run_dsymutil and dist.gpg_password_file config options, as they were unused.",
93+
},
8994
];

0 commit comments

Comments
 (0)