diff options
| author | bors <bors@rust-lang.org> | 2023-10-02 07:41:52 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-10-02 07:41:52 +0000 |
| commit | c7407eff9d7e3bd073a5551a7fd44555ae746342 (patch) | |
| tree | 42e4d56da8e2f5caf49a9c53937b247933887173 | |
| parent | 8373b055146c00978201e8a7dc299bd1a9c3ec3f (diff) | |
| parent | b1862af177dcfa0afe1a04df40c93e9d6ca18ad7 (diff) | |
| download | rust-c7407eff9d7e3bd073a5551a7fd44555ae746342.tar.gz rust-c7407eff9d7e3bd073a5551a7fd44555ae746342.zip | |
Auto merge of #115898 - onur-ozkan:config-change-tracking, r=Mark-Simulacrum
bootstrap major change detection implementation The use of `changelog-seen` and `bootstrap/CHANGELOG.md` has not been functional in any way for many years. We often do major/breaking changes but never update the changelog file or the `changelog-seen`. This is an alternative method for tracking major or breaking changes and informing developers when such changes occur. Example output when bootstrap detects a major change: 
| -rwxr-xr-x | test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test.sh b/test.sh index 592997b8ab9..b462e5d156b 100755 --- a/test.sh +++ b/test.sh @@ -214,7 +214,7 @@ function setup_rustc() { rm config.toml || true cat > config.toml <<EOF -changelog-seen = 2 +change-id = 115898 [rust] codegen-backends = [] |
