Bump to 0.0.81

This commit is contained in:
Manish Goregaokar 2016-08-14 09:13:19 +05:30
parent e83eac5f42
commit e12f14f676
No known key found for this signature in database
GPG Key ID: 3BBF4D3E2EF79F98
3 changed files with 12 additions and 3 deletions

View File

@ -1,6 +1,15 @@
# Change Log
All notable changes to this project will be documented in this file.
## 0.0.81 - 2016-08-14
* Rustup to *rustc 1.12.0-nightly (1deb02ea6 2016-08-12)*
* New lints: [`eval_order_dependence`], [`mixed_case_hex_literals`], [`unseparated_literal_suffix`]
* False positive fix in [`too_many_arguments`]
* Addition of functionality to [`needless_borrow`]
* Suggestions for [`clone_on_copy`]
* Bug fix in [`wrong_self_convention`]
* Doc improvements
## 0.0.80 — 2016-07-31
* Rustup to *rustc 1.12.0-nightly (1225e122f 2016-07-30)*

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.80"
version = "0.0.81"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -25,7 +25,7 @@ test = false
[dependencies]
# begin automatic update
clippy_lints = { version = "0.0.80", path = "clippy_lints" }
clippy_lints = { version = "0.0.81", path = "clippy_lints" }
# end automatic update
[dev-dependencies]

View File

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