summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2023-12-07 12:43:52 +0100
committerJakub Beránek <berykubik@gmail.com>2023-12-10 20:45:07 +0100
commitf1c5558edc7a795e1c4cd131ace9f61a4eccfb1d (patch)
tree05846862f8aa754614506f2ee1f8526642ec1982 /src/bootstrap
parentccbd88dc833e35595297340be4c79a59ed314fec (diff)
downloadrust-f1c5558edc7a795e1c4cd131ace9f61a4eccfb1d.tar.gz
rust-f1c5558edc7a795e1c4cd131ace9f61a4eccfb1d.zip
Add ChangeInfo record
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/src/utils/change_tracker.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bootstrap/src/utils/change_tracker.rs b/src/bootstrap/src/utils/change_tracker.rs
index af3b238dfc3..8b53a61542e 100644
--- a/src/bootstrap/src/utils/change_tracker.rs
+++ b/src/bootstrap/src/utils/change_tracker.rs
@@ -91,4 +91,9 @@ pub const CONFIG_CHANGE_HISTORY: &[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.",
+    },
 ];