From 41c96908cc0a79f280cbfaa080089f891772ace7 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Mon, 31 Jul 2017 12:38:29 +0200 Subject: [PATCH] Bump the version --- 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 f9bb186d4b1f..7aa51038ea3b 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.147 +* Update to *rustc 1.21.0-nightly (aac223f4f 2017-07-30)* + ## 0.0.146 * Update to *rustc 1.21.0-nightly (52a330969 2017-07-27)* * Fixes false positives in `inline_always` diff --git a/Cargo.toml b/Cargo.toml index 17d89c441d5a..55a784ab45af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.146" +version = "0.0.147" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -32,7 +32,7 @@ path = "src/main.rs" [dependencies] # begin automatic update -clippy_lints = { version = "0.0.146", path = "clippy_lints" } +clippy_lints = { version = "0.0.147", path = "clippy_lints" } # end automatic update cargo_metadata = "0.2" diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 2218ccfa84b1..3db8beed6c79 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.146" +version = "0.0.147" # end automatic update authors = [ "Manish Goregaokar ",