From 398c688afa554c5339f9821e72f3deb7683cc0a6 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Fri, 28 Jul 2017 09:23:03 +0200 Subject: [PATCH] Bump the version --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- clippy_lints/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d31e46e3473..f9bb186d4b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log All notable changes to this project will be documented in this file. +## 0.0.146 +* Update to *rustc 1.21.0-nightly (52a330969 2017-07-27)* +* Fixes false positives in `inline_always` +* Fixes false negatives in `panic_params` + ## 0.0.145 * Update to *rustc 1.20.0-nightly (afe145d22 2017-07-23)* diff --git a/Cargo.toml b/Cargo.toml index a2aa6464566..17d89c441d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.145" +version = "0.0.146" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -32,7 +32,7 @@ path = "src/main.rs" [dependencies] # begin automatic update -clippy_lints = { version = "0.0.145", path = "clippy_lints" } +clippy_lints = { version = "0.0.146", path = "clippy_lints" } # end automatic update cargo_metadata = "0.2" diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index d74a4f789f4..2218ccfa84b 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.145" +version = "0.0.146" # end automatic update authors = [ "Manish Goregaokar ",