Merge pull request #980 from dtolnay/release

Release 0.0.72
This commit is contained in:
Martin Carton 2016-06-04 23:51:03 +02:00
commit 0e647b0e82
3 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
# Change Log
All notable changes to this project will be documented in this file.
## 0.0.72 — 2016-06-04
* Fix false positives in [`useless_let_if_seq`]
## 0.0.71 — 2016-05-31
* Rustup to *rustc 1.11.0-nightly (a967611d8 2016-05-30)*
* New lint: [`useless_let_if_seq`]

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.71"
version = "0.0.72"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -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.71", path = "clippy_lints" }
clippy_lints = { version = "0.0.72", path = "clippy_lints" }
# end automatic update
rustc-serialize = "0.3"

View File

@ -1,7 +1,7 @@
[package]
name = "clippy_lints"
# begin automatic update
version = "0.0.71"
version = "0.0.72"
# end automatic update
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",