Skip to content

Commit 20318eb

Browse files
committed
Cleanup old min_version stuff
This cleans up a few leftover things after rust-lang#3018
1 parent 2b7a530 commit 20318eb

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

PUBLISH.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ Steps to publish a new Clippy version
22

33
- Bump `package.version` in `./Cargo.toml` (no need to manually bump `dependencies.clippy_lints.version`).
44
- Write a changelog entry.
5-
- If a nightly update is needed, update `min_version.txt` using `rustc -vV > min_version.txt`
65
- Run `./pre_publish.sh`
76
- Review and commit all changed files
87
- `git push`

build.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
//! This build script ensures that Clippy is not compiled with an
2-
//! incompatible version of rust. It will panic with a descriptive
3-
//! error message instead.
4-
//!
5-
//! We specifially want to ensure that Clippy is only built with a
6-
//! rustc version that is newer or equal to the one specified in the
7-
//! `min_version.txt` file.
8-
//!
9-
//! `min_version.txt` is in the repo but also in the `.gitignore` to
10-
//! make sure that it is not updated manually by accident. Only CI
11-
//! should update that file.
12-
//!
13-
//! This build script was originally taken from the Rocket web framework:
14-
//! https://github.com/SergioBenitez/Rocket
15-
161
use std::env;
172

183
fn main() {

0 commit comments

Comments
 (0)