Skip to content

Commit ecbade0

Browse files
committed
1 parent e638bd3 commit ecbade0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ repository and compiled from source or installed from
2727
of the nightly toolchain is supported at any given time.
2828

2929
<!-- 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.
3232
Then you can do:
3333

3434
```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
3737
```
3838

3939
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
122122

123123
```sh
124124
# 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
126126
# fetch the version in the manifest of your crate (adapt this to your usecase if needed)
127127
eval "current_version=$(grep -e '^version = .*$' Cargo.toml | cut -d ' ' -f 3)"
128128
# run the semver checks and output them for convenience

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# NOTE: Keep in sync with nightly date on README
22
[toolchain]
3-
channel = "nightly-2022-05-16"
3+
channel = "nightly-2022-05-23"
44
components = ["llvm-tools-preview", "rustc-dev"]

tests/cases/regions/stdout

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ error: breaking changes in `efg`
3737
17 | pub fn efg(_: &str) { }
3838
| ^^^^^^^^^^^^^^^^^^^
3939
|
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)
4141

4242
error: breaking changes in `fgh`
4343
--> regions/new.rs:19:1
4444
|
4545
19 | pub fn fgh(_: &'static str) { }
4646
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
4747
|
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)
4949

50-
error: aborting due to 6 previous errors
50+
error: aborting due to 6 previous errors

0 commit comments

Comments
 (0)