From: mcarton Date: Fri, 19 Aug 2016 15:41:24 +0000 (+0200) Subject: Bump to 0.0.85 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=0474fe27ea62f84b8f35709f68f41b43e0c97294;p=rust.git Bump to 0.0.85 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 818f1cedef1..45eb44a5b3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. +## 0.0.85 — 2016-08-19 +* Fix ICE with [`useless_attribute`] +* [`useless_attribute`] ignores [`unused_imports`] on `use` statements + ## 0.0.84 — 2016-08-18 * Rustup to *rustc 1.13.0-nightly (aef6971ca 2016-08-17)* diff --git a/Cargo.toml b/Cargo.toml index 4b1f5fb6fa2..89974572eed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.84" +version = "0.0.85" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,7 +25,7 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.84", path = "clippy_lints" } +clippy_lints = { version = "0.0.85", path = "clippy_lints" } # end automatic update [dev-dependencies] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 20b8088b3e4..6f6f09d1e67 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.84" +version = "0.0.85" # end automatic update authors = [ "Manish Goregaokar ",