From 40151d91af6539087383038e0cc95ea7ce3b9b91 Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Wed, 11 Jul 2018 07:59:37 +0200 Subject: [PATCH] Add rust-toolchain file Using `nightly` means that the latest available nightly version will be used when cd'ing to a clippy checkout. --- PUBLISH.md | 1 + rust-toolchain | 1 + 2 files changed, 2 insertions(+) create mode 100644 rust-toolchain diff --git a/PUBLISH.md b/PUBLISH.md index b85605dc3b3..749eae97304 100644 --- a/PUBLISH.md +++ b/PUBLISH.md @@ -2,6 +2,7 @@ Steps to publish a new Clippy version - Bump `package.version` in `./Cargo.toml` (no need to manually bump `dependencies.clippy_lints.version`). - Write a changelog entry. +- If a nightly update is needed, update `min_version.txt` using `rustc -vV > min_version.txt` - Run `./pre_publish.sh` - Review and commit all changed files - `git push` diff --git a/rust-toolchain b/rust-toolchain new file mode 100644 index 00000000000..bf867e0ae5b --- /dev/null +++ b/rust-toolchain @@ -0,0 +1 @@ +nightly