about summary refs log tree commit diff
diff options
context:
space:
mode:
authormcarton <cartonmartin+git@gmail.com>2016-08-19 17:41:24 +0200
committermcarton <cartonmartin+git@gmail.com>2016-08-19 17:41:24 +0200
commit0474fe27ea62f84b8f35709f68f41b43e0c97294 (patch)
tree6fa046bae318296fd5b61f9d526b76c80684f936
parent27255bc2137332cab967df5fe774761a71aaf5bc (diff)
downloadrust-0474fe27ea62f84b8f35709f68f41b43e0c97294.tar.gz
rust-0474fe27ea62f84b8f35709f68f41b43e0c97294.zip
Bump to 0.0.85
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml4
-rw-r--r--clippy_lints/Cargo.toml2
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 818f1cedef1..45eb44a5b3d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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)*
 
diff --git a/Cargo.toml b/Cargo.toml
index 4b1f5fb6fa2..89974572eed 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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]
diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml
index 20b8088b3e4..6f6f09d1e67 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.84"
+version = "0.0.85"
 # end automatic update
 authors = [
 	"Manish Goregaokar <manishsmail@gmail.com>",