Bump to 0.0.85

This commit is contained in:
mcarton 2016-08-19 17:41:24 +02:00
parent 27255bc213
commit 0474fe27ea
No known key found for this signature in database
GPG Key ID: 5E427C794CBA45E8
3 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.
## 0.0.85 — 2016-08-19
* Fix ICE with [`useless_attribute`]
* [`useless_attribute`] ignores [`unused_imports`] on `use` statements
## 0.0.84 — 2016-08-18
* Rustup to *rustc 1.13.0-nightly (aef6971ca 2016-08-17)*

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.84"
version = "0.0.85"
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.84", path = "clippy_lints" }
clippy_lints = { version = "0.0.85", path = "clippy_lints" }
# end automatic update
[dev-dependencies]

View File

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