Version bump

This commit is contained in:
Oliver Schneider 2017-11-21 08:17:28 +01:00
parent 30a663f17c
commit c362efa420
No known key found for this signature in database
GPG Key ID: A69F8D225B3AD7D9
3 changed files with 7 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.173
* Rustup to *rustc 1.23.0-nightly (33374fa9d 2017-11-20)*
## 0.0.172
* Rustup to *rustc 1.23.0-nightly (d0f8e2913 2017-11-16)*
@ -538,6 +541,7 @@ All notable changes to this project will be documented in this file.
[`filter_next`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#filter_next
[`float_arithmetic`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#float_arithmetic
[`float_cmp`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#float_cmp
[`float_cmp_const`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#float_cmp_const
[`for_kv_map`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#for_kv_map
[`for_loop_over_option`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#for_loop_over_option
[`for_loop_over_result`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#for_loop_over_result

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.172"
version = "0.0.173"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -37,7 +37,7 @@ path = "src/driver.rs"
[dependencies]
# begin automatic update
clippy_lints = { version = "0.0.172", path = "clippy_lints" }
clippy_lints = { version = "0.0.173", path = "clippy_lints" }
# end automatic update
cargo_metadata = "0.2"
regex = "0.2"

View File

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