Skip to content

Commit 6bd57e3

Browse files
committed
Bump bootstrap version and update changelog
1 parent ed97505 commit 6bd57e3

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/bootstrap/CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Non-breaking changes since the last major version]
88

9+
None.
10+
11+
## [Version 2] - 2020-09-25
12+
13+
- `host` now defaults to the value of `build` in all cases
14+
+ Previously `host` defaulted to an empty list when `target` was overridden, and to `build` otherwise
15+
16+
### Non-breaking changes
17+
918
- Add `x.py setup` [#76631](https://github.com/rust-lang/rust/pull/76631)
1019
- Add a changelog for x.py [#76626](https://github.com/rust-lang/rust/pull/76626)
1120
- Optionally, download LLVM from CI on Linux and NixOS
@@ -21,7 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
2130
[#77120](https://github.com/rust-lang/rust/pull/77120).
2231

2332

24-
## [Version 0] - 2020-09-11
33+
## [Version 1] - 2020-09-11
2534

2635
This is the first changelog entry, and it does not attempt to be an exhaustive list of features in x.py.
2736
Instead, this documents the changes to bootstrap in the past 2 months.

src/bootstrap/bin/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fn main() {
4040
}
4141

4242
fn check_version(config: &Config) -> Option<String> {
43-
const VERSION: usize = 1;
43+
const VERSION: usize = 2;
4444

4545
let mut msg = String::new();
4646

0 commit comments

Comments
 (0)