Skip to content

Commit 05ee1b6

Browse files
authored
Merge pull request #1248 from Manishearth/rustup2
Rustup to *rustc 1.14.0-nightly (289f3a4 2016-09-29)* and bump to 0.0.92
2 parents fe27ac5 + ee5a5a2 commit 05ee1b6

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 0.0.92 — 2016-09-30
5+
* Rustup to *rustc 1.14.0-nightly (289f3a4ca 2016-09-29)*
6+
47
## 0.0.91 — 2016-09-28
58
* Rustup to *rustc 1.13.0-nightly (d0623cf7b 2016-09-26)*
69

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.91"
3+
version = "0.0.92"
44
authors = [
55
"Manish Goregaokar <[email protected]>",
66
"Andre Bogus <[email protected]>",
@@ -25,7 +25,7 @@ test = false
2525

2626
[dependencies]
2727
# begin automatic update
28-
clippy_lints = { version = "0.0.91", path = "clippy_lints" }
28+
clippy_lints = { version = "0.0.92", path = "clippy_lints" }
2929
# end automatic update
3030

3131
[dev-dependencies]

clippy_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "clippy_lints"
33
# begin automatic update
4-
version = "0.0.91"
4+
version = "0.0.92"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ pub fn main() {
170170
// this check ensures that dependencies are built but not linted and the final crate is
171171
// linted but not built
172172
let mut ccc = ClippyCompilerCalls::new(env::args().any(|s| s == "-Zno-trans"));
173-
let (result, _) = rustc_driver::run_compiler(&args, &mut ccc);
173+
let (result, _) = rustc_driver::run_compiler(&args, &mut ccc, None, None);
174174

175175
if let Err(err_count) = result {
176176
if err_count > 0 {

0 commit comments

Comments
 (0)