From eec5425b34d6acee62788a417e840fffbbbe1530 Mon Sep 17 00:00:00 2001 From: mcarton Date: Fri, 30 Sep 2016 15:33:24 +0200 Subject: [PATCH 1/2] Rustup to *rustc 1.14.0-nightly (289f3a4ca 2016-09-29)* --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 83c569ebb397..ed1c30d567bb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 { From ee5a5a256f1da1e6df7905a66bebb17f92210fc4 Mon Sep 17 00:00:00 2001 From: mcarton Date: Fri, 30 Sep 2016 22:06:51 +0200 Subject: [PATCH 2/2] Bump to 0.0.92 --- CHANGELOG.md | 3 +++ Cargo.toml | 4 ++-- clippy_lints/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc8a0a14ffb3..5d02908a8027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)* diff --git a/Cargo.toml b/Cargo.toml index ce3a60c05bee..61349cd0490c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.91" +version = "0.0.92" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -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] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 7d08732ee275..3335b5f8767f 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -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 ",