about summary refs log tree commit diff
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
parentccbd88dc833e35595297340be4c79a59ed314fec (diff)
downloadrust-f1c5558edc7a795e1c4cd131ace9f61a4eccfb1d.tar.gz
rust-f1c5558edc7a795e1c4cd131ace9f61a4eccfb1d.zip
Add ChangeInfo record
-rw-r--r--config.example.toml2
-rw-r--r--src/bootstrap/src/utils/change_tracker.rs5
2 files changed, 6 insertions, 1 deletions
diff --git a/config.example.toml b/config.example.toml
index b103e9890d2..14e0b9d521f 100644
--- a/config.example.toml
+++ b/config.example.toml
@@ -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
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.",
+    },
 ];