File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
7
7
## [ Non-breaking changes since the last major version]
8
8
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
+
9
18
- Add ` x.py setup ` [ #76631 ] ( https://github.com/rust-lang/rust/pull/76631 )
10
19
- Add a changelog for x.py [ #76626 ] ( https://github.com/rust-lang/rust/pull/76626 )
11
20
- 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/).
21
30
[ #77120 ] ( https://github.com/rust-lang/rust/pull/77120 ) .
22
31
23
32
24
- ## [ Version 0 ] - 2020-09-11
33
+ ## [ Version 1 ] - 2020-09-11
25
34
26
35
This is the first changelog entry, and it does not attempt to be an exhaustive list of features in x.py.
27
36
Instead, this documents the changes to bootstrap in the past 2 months.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ fn main() {
40
40
}
41
41
42
42
fn check_version ( config : & Config ) -> Option < String > {
43
- const VERSION : usize = 1 ;
43
+ const VERSION : usize = 2 ;
44
44
45
45
let mut msg = String :: new ( ) ;
46
46
You can’t perform that action at this time.
0 commit comments