This repository was archived by the owner on Apr 5, 2024. It is now read-only.
File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
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-2022-05-16 ` toolchain.
31
- You can install it by using ` rustup install nightly-2022-05-16 ` if you already have rustup.
30
+ It's recommended to use ` nightly-2022-05-23 ` toolchain.
31
+ You can install it by using ` rustup install nightly-2022-05-23 ` 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-2022-05-16
36
- $ cargo +nightly-2022-05-16 install --git https://github.com/rust-lang/rust-semverver
35
+ $ rustup component add rustc-dev llvm-tools-preview --toolchain nightly-2022-05-23
36
+ $ cargo +nightly-2022-05-23 install --git https://github.com/rust-lang/rust-semverver
37
37
```
38
38
39
39
You'd also need ` cmake ` for some dependencies, and a few common libraries (if you hit
@@ -122,7 +122,7 @@ carried out correctly with regards to the current version of your crate on crate
122
122
123
123
``` sh
124
124
# install a current version of rust-semverver
125
- cargo +nightly-2022-05-16 install --git https://github.com/rust-lang/rust-semverver
125
+ cargo +nightly-2022-05-23 install --git https://github.com/rust-lang/rust-semverver
126
126
# fetch the version in the manifest of your crate (adapt this to your usecase if needed)
127
127
eval " current_version=$( grep -e ' ^version = .*$' Cargo.toml | cut -d ' ' -f 3) "
128
128
# run the semver checks and output them for convenience
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-2022-05-16 "
3
+ channel = "nightly-2022-05-23 "
4
4
components = ["llvm-tools-preview", "rustc-dev"]
Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ error: breaking changes in `efg`
37
37
17 | pub fn efg(_: &str) { }
38
38
| ^^^^^^^^^^^^^^^^^^^
39
39
|
40
- = warning: type error: expected bound lifetime parameter, found concrete lifetime (breaking)
40
+ = warning: type error: one type is more general than the other (breaking)
41
41
42
42
error: breaking changes in `fgh`
43
43
--> regions/new.rs:19:1
44
44
|
45
45
19 | pub fn fgh(_: &'static str) { }
46
46
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
47
47
|
48
- = warning: type error: expected bound lifetime parameter, found concrete lifetime (breaking)
48
+ = warning: type error: one type is more general than the other (breaking)
49
49
50
- error: aborting due to 6 previous errors
50
+ error: aborting due to 6 previous errors
You can’t perform that action at this time.
0 commit comments