From: mcarton Date: Sun, 5 Jun 2016 19:43:22 +0000 (+0200) Subject: Bump to 0.0.73 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=8497e3bacbbf6a729ced38f5481f193c927a164e;p=rust.git Bump to 0.0.73 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index ea59d62a5ff..166990b3d3b 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.73 — 2016-06-05 +* Fix false positives in [`useless_let_if_seq`] + ## 0.0.72 — 2016-06-04 * Fix false positives in [`useless_let_if_seq`] diff --git a/Cargo.toml b/Cargo.toml index 202cdb7b592..aadc4e8e041 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.72" +version = "0.0.73" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -30,7 +30,7 @@ toml = "0.1" unicode-normalization = "0.1" quine-mc_cluskey = "0.2.2" # begin automatic update -clippy_lints = { version = "0.0.72", path = "clippy_lints" } +clippy_lints = { version = "0.0.73", path = "clippy_lints" } # end automatic update rustc-serialize = "0.3" diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 877b9037d37..d0398897bea 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.72" +version = "0.0.73" # end automatic update authors = [ "Manish Goregaokar ",