From c090c3df21ba1f4f9b4ce2a9f3f10005a93f3713 Mon Sep 17 00:00:00 2001 From: mcarton Date: Tue, 6 Sep 2016 19:04:38 +0200 Subject: [PATCH 1/2] Rustup to *rustc 1.13.0-nightly (cbe4de78e 2016-09-05)* --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index efe6459f587..120fa247ba7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -72,7 +72,7 @@ impl<'a> CompilerCalls<'a> for ClippyCompilerCalls { let old = std::mem::replace(&mut control.after_parse.callback, box |_| {}); control.after_parse.callback = Box::new(move |state| { { - let mut registry = rustc_plugin::registry::Registry::new(state.session, state.krate.as_ref().expect("at this compilation stage the krate must be parsed")); + let mut registry = rustc_plugin::registry::Registry::new(state.session, state.krate.as_ref().expect("at this compilation stage the krate must be parsed").span); registry.args_hidden = Some(Vec::new()); clippy_lints::register_plugins(&mut registry); From 9263ec361680d6424c4a9c4c16c83b88a861e502 Mon Sep 17 00:00:00 2001 From: mcarton Date: Tue, 6 Sep 2016 19:05:53 +0200 Subject: [PATCH 2/2] Bump to 0.0.89 --- 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 3c789feff34..b6322479e45 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.89 — 2016-09-06 +* Rustup to *rustc 1.13.0-nightly (cbe4de78e 2016-09-05)* + ## 0.0.88 — 2016-09-04 * Rustup to *rustc 1.13.0-nightly (70598e04f 2016-09-03)* * The following lints are not new but were only usable through the `clippy` diff --git a/Cargo.toml b/Cargo.toml index 92ba37ee593..7e83e45d856 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.88" +version = "0.0.89" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,7 +25,7 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.88", path = "clippy_lints" } +clippy_lints = { version = "0.0.89", path = "clippy_lints" } # end automatic update [dev-dependencies] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index a355bd85593..50eba2aee4f 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.88" +version = "0.0.89" # end automatic update authors = [ "Manish Goregaokar ",