mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
Merge pull request #1248 from Manishearth/rustup2
Rustup to *rustc 1.14.0-nightly (289f3a4ca
2016-09-29)* and bump to 0.0.92
This commit is contained in:
commit
05ee1b6254
@ -1,6 +1,9 @@
|
||||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 0.0.92 — 2016-09-30
|
||||
* Rustup to *rustc 1.14.0-nightly (289f3a4ca 2016-09-29)*
|
||||
|
||||
## 0.0.91 — 2016-09-28
|
||||
* Rustup to *rustc 1.13.0-nightly (d0623cf7b 2016-09-26)*
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "clippy"
|
||||
version = "0.0.91"
|
||||
version = "0.0.92"
|
||||
authors = [
|
||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||
"Andre Bogus <bogusandre@gmail.com>",
|
||||
@ -25,7 +25,7 @@ test = false
|
||||
|
||||
[dependencies]
|
||||
# begin automatic update
|
||||
clippy_lints = { version = "0.0.91", path = "clippy_lints" }
|
||||
clippy_lints = { version = "0.0.92", path = "clippy_lints" }
|
||||
# end automatic update
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "clippy_lints"
|
||||
# begin automatic update
|
||||
version = "0.0.91"
|
||||
version = "0.0.92"
|
||||
# end automatic update
|
||||
authors = [
|
||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||
|
@ -170,7 +170,7 @@ pub fn main() {
|
||||
// this check ensures that dependencies are built but not linted and the final crate is
|
||||
// linted but not built
|
||||
let mut ccc = ClippyCompilerCalls::new(env::args().any(|s| s == "-Zno-trans"));
|
||||
let (result, _) = rustc_driver::run_compiler(&args, &mut ccc);
|
||||
let (result, _) = rustc_driver::run_compiler(&args, &mut ccc, None, None);
|
||||
|
||||
if let Err(err_count) = result {
|
||||
if err_count > 0 {
|
||||
|
Loading…
Reference in New Issue
Block a user