File tree 3 files changed +13
-13
lines changed 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ repository and compiled from source or installed from
27
27
of the nightly toolchain is supported at any given time.
28
28
29
29
<!-- NOTE: Keep in sync with nightly date on rust-toolchain. -->
30
- It's recommended to use ` nightly-2020-12-01 ` toolchain.
31
- You can install it by using ` rustup install nightly-2020-12-01 ` if you already have rustup.
30
+ It's recommended to use ` nightly-2020-12-14 ` toolchain.
31
+ You can install it by using ` rustup install nightly-2020-12-14 ` if you already have rustup.
32
32
Then you can do:
33
33
34
34
``` sh
35
- $ rustup component add rustc-dev llvm-tools-preview --toolchain nightly-2020-12-01
36
- $ cargo +nightly-2020-12-01 install semverver
35
+ $ rustup component add rustc-dev llvm-tools-preview --toolchain nightly-2020-12-14
36
+ $ cargo +nightly-2020-12-14 install semverver
37
37
```
38
38
39
39
You'd also need ` cmake ` for some dependencies, and a few common libraries (if you hit
@@ -43,8 +43,8 @@ can be added here).
43
43
You can also install the newest version of the tool from git:
44
44
45
45
``` sh
46
- $ rustup component add rustc-dev llvm-tools-preview --toolchain nightly-2020-12-01
47
- $ cargo +nightly-2020-12-01 install --git https://github.com/rust-lang/rust-semverver
46
+ $ rustup component add rustc-dev llvm-tools-preview --toolchain nightly-2020-12-14
47
+ $ cargo +nightly-2020-12-14 install --git https://github.com/rust-lang/rust-semverver
48
48
```
49
49
50
50
<details >
Original file line number Diff line number Diff line change 1
1
# NOTE: Keep in sync with nightly date on README
2
2
[toolchain]
3
- channel = "nightly-2020-12-01 "
3
+ channel = "nightly-2020-12-14 "
4
4
components = ["llvm-tools-preview", "rustc-dev"]
Original file line number Diff line number Diff line change @@ -73,32 +73,32 @@ warning: variant with no public fields changed to a tuple variant (breaking)
73
73
|
74
74
19 | Abc(u8),
75
75
| ^^^^^^^
76
- warning: variant with no public fields changed to a tuple variant (breaking)
76
+ warning: variant with public fields changed to a tuple variant (breaking)
77
77
--> enums/new.rs:20:5
78
78
|
79
79
20 | Bcd,
80
80
| ^^^
81
- warning: variant with no public fields changed to a struct variant (breaking)
81
+ warning: variant with public fields changed to a struct variant (breaking)
82
82
--> enums/new.rs:21:5
83
83
|
84
84
21 | Cde { f: u8 },
85
85
| ^^^^^^^^^^^^^
86
- warning: variant with no public fields changed to a tuple variant (breaking)
86
+ warning: variant with public fields changed to a tuple variant (breaking)
87
87
--> enums/new.rs:22:5
88
88
|
89
89
22 | Def,
90
90
| ^^^
91
- warning: variant with no public fields changed to a struct variant (breaking)
91
+ warning: variant with public fields changed to a struct variant (breaking)
92
92
--> enums/new.rs:23:5
93
93
|
94
94
23 | Efg { f: u8 },
95
95
| ^^^^^^^^^^^^^
96
- warning: private field removed from variant with private fields (breaking)
96
+ warning: public field removed from variant with no private fields (breaking)
97
97
--> enums/old.rs:25:11
98
98
|
99
99
25 | Ghi { f: u8 },
100
100
| ^^^^^
101
- note: private field added to variant with private fields (non- breaking)
101
+ warning: public field added to variant with no private fields (breaking)
102
102
--> enums/new.rs:25:11
103
103
|
104
104
25 | Ghi { g: u8 },
You can’t perform that action at this time.
0 commit comments