Bump to 1.105

This commit is contained in:
Manish Goregaokar 2017-01-04 15:40:34 -08:00
parent b101611a97
commit 2f941131bf
3 changed files with 9 additions and 3 deletions

View file

@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.
## 0.0.105 — 2016-12-15
* Update to *rustc 1.15.0-nightly (8f02c429a 2016-12-15)*
* New lints: [`deref_addrof`], [`double_parens`], [`pub_enum_variant_names`]
* Fix suggestion in [`new_without_default`]
* FP fix in [`absurd_extreme_comparisons`]
## 0.0.104 — 2016-12-15
* Update to *rustc 1.15.0-nightly (8f02c429a 2016-12-15)*

View file

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

View file

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